连接名称属性Struts中的字符串

时间:2013-10-02 14:29:03

标签: javascript html dom struts

假设代码段name="<%=(String) curItr.next()%>"返回shoppingList。在html:text标记中。

如何使用shoppingList[0].anotherList[1]生成DOM元素?我试过了

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

完整的代码段:

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

1 个答案:

答案 0 :(得分:0)

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

<html:text property="propertyNameOfYourBean"/>

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