Spring MVC 中选择列表中的自定义标签和值

发布于 2024-11-16 18:12:37 字数 225 浏览 4 评论 0原文

我的 JSP 页面中有一个用户下拉列表,其中显示用户列表。在下拉列表中,我需要将用户名和电子邮件显示为标签,而值将是用户 ID 和用户电子邮件地址。因此,我需要连接用户实例的属性以显示正确的标签和值。

在 Spring MVC 中执行此操作的最佳方法是什么?

我可以迭代 Spring 控制器中的列表并连接属性,然后创建一个将显示在页面中的新列表。这是我能想到的办法。

还有更好的想法吗?

I have a user drop down in my JSP page where I show the user list. In the drop down I need to show the user name and email as the label while value will be user id and user email address. So I need to concatenate the properties of my user instance to show the proper label and values.

What is the best possible approach to do this in the Spring MVC?

I can iterate over the list in my Spring Controller and concatenate the properties and then create a new list which will be displayed in the page. This is the way I can think of.

Any better ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

掩于岁月 2024-11-23 18:12:37

将用户列表对象添加到模型中并使用标准标签库构建 html

<select id="users" name="users">
  <c:forEach items="users" var="user">
    <option value="${user.id}">${user.name} [${user.email}]</option>
  </c:forEach>
</select>

Add users list object to the model and use standard tag lib to build the html

<select id="users" name="users">
  <c:forEach items="users" var="user">
    <option value="${user.id}">${user.name} [${user.email}]</option>
  </c:forEach>
</select>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文