使用 spring MVC 将一列显示为下拉列表的示例

发布于 2024-12-08 17:05:56 字数 544 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥有 2024-12-15 17:05:56

您需要使用 id 属性来引用显示标记在其上迭代的列表的当前元素:

<display:table name="ListwithMap" id="currentElement">
    <display:column sortable="false" titleKey="dropdown.name"  style="width: 15%">
        <select name="s" id="s" >
        <c:forEach items="${currentElement}" var="x">
            <c:out value="${x.key}"/>
        </c:forEach>
        </select>
    </display:column>
</display:table>

请注意,属性(如 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:

<display:table name="ListwithMap" id="currentElement">
    <display:column sortable="false" titleKey="dropdown.name"  style="width: 15%">
        <select name="s" id="s" >
        <c:forEach items="${currentElement}" var="x">
            <c:out value="${x.key}"/>
        </c:forEach>
        </select>
    </display:column>
</display:table>

Note that attributes, like Java variables, conventionally start with a lower-case letter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文