Spring MVC 中选择列表中的自定义标签和值
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将用户列表对象添加到模型中并使用标准标签库构建 html
Add users list object to the model and use standard tag lib to build the html