1

说片段name="<%=(String) curItr.next()%>"返回shoppingList。在一个html:text标签中。

我如何使 DOM 元素产生结果shoppingList[0].anotherList[1]?我试过了

name="<%=(String) curItr.next()%>" + shoppingList[0].anotherList[1]但它并不完全有效

完整的代码片段:

    <html:text indexed="true" name="<%=(String) 
curItr.next()%>"+"[0]" property="<%=(String) curItr.next()%>"/>
4

1 回答 1

0

这是不可读的,你不应该使用 scriptlet,使用 JSTL。

<html:text property="propertyNameOfYourBean"/>

对于列表,您应该使用<c:forEach>标签。

于 2013-10-13T23:56:39.713 回答