如何在 spring 中获取表单中选择的下拉值和 id
我正在使用 Spring MVC。 在我的模型中,我有一个地图(例如 optionsMap),它将在 UI 中显示下拉选项。这是一个多选下拉菜单。 Id 是一个整数,显示值是一个字符串。提交表单时,控制器应该能够将所选选项的 id 和值获取到映射 (selectedOptionsMap) 中。
<form:select path="selectedOptionsMap" id="deviceList" multiple="true"></form:select>
I am using Spring MVC.
In my model I have a Map (say optionsMap) that will display dropdown options in UI. This is a multi selection dropdown. Id is an integer and display value is a string. On submit of form, controller should be able to get id(s) and value(s) of the selected options into a map (selectedOptionsMap).
<form:select path="selectedOptionsMap" id="deviceList" multiple="true"></form:select>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spring 3.0 MVC 中的多选 已经对此进行了讨论。一探究竟。您将需要一个自定义编辑器。
This has already been discussed at Multiple Select in Spring 3.0 MVC . Check it out. You will need a custom editor here .