如何在 spring 中获取表单中选择的下拉值和 id

发布于 2024-12-22 18:24:54 字数 282 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

冷情妓 2024-12-29 18:24:54

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 .

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