我有这个迭代器。
<s:iterator value = "myQuestions" status="key">
<s:property value="%{#key.index}" />
<h1><s:property value = "myQuestions[%{#key.index}].question"/></h1>
</s:iterator>
当迭代器对此进行迭代时
<s:property value="%{#key.index}" />
它显示正确的索引。但是当我添加%{#key.index}
这个
<h1><s:property value = "myQuestions[%{#key.index}].question"/></h1>
它不显示处于该特定索引的元素。
因此,假设当前索引为 0。
当我这样做时,<s:property value = "myQuestions[%{#key.index}].question"/>
它不会显示任何内容。但是当我硬编码它时。
<s:property value = "myQuestions[0].question"/> it displays the proper item. what am I missing?