使用 spring MVC 将一列显示为下拉列表的示例
The following is i'm trying..ListwithMap is passing using spring mvc.
但无法从列表中提取地图。它显示为空。!
<display:table name="ListwithMap" >
------
------
<display:column sortable="false" titleKey="dropdown.name" style="width: 15%">
<select name="s" id="s" >
<c:forEach items="${Map}" var="x">
<c:out value="${x.key}"/>
</c:forEach>
</select>
</display:column>
</display:table>
请帮忙。
The following is i'm trying..ListwithMap is passing using spring mvc.
But unable to extract Map from the list. it displays empty.!
<display:table name="ListwithMap" >
------
------
<display:column sortable="false" titleKey="dropdown.name" style="width: 15%">
<select name="s" id="s" >
<c:forEach items="${Map}" var="x">
<c:out value="${x.key}"/>
</c:forEach>
</select>
</display:column>
</display:table>
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 id 属性来引用显示标记在其上迭代的列表的当前元素:
请注意,属性(如 Java 变量)通常以小写字母开头。
You need to use the id attribute to have a reference to the current element of the list on which the display tag iterates:
Note that attributes, like Java variables, conventionally start with a lower-case letter.