Rails 复选框和参数

发布于 2024-12-11 06:32:37 字数 220 浏览 0 评论 0原文

我在页面中使用了许多复选框,如下所示:

<%= check_box_tag(:one, value = 1) %></p>

想象一下,它从 1 到 20,值更改后仍然相同。如何在控制器中获取已检查参数的params

示例:如果用户检查 3、5 和 10,我怎样才能在单个参数中获取这些参数?

I am using many checkboxes in a page as the following:

<%= check_box_tag(:one, value = 1) %></p>

Imagine that it goes from 1 to 20, all the same with the value changed. How can I get in the controller the params of the ones that were checked?

Example: If user checks 3, 5 and 10 how can I get just those params in a single params?

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

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

发布评论

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

评论(1

谷夏 2024-12-18 06:32:37

您将已经只获得已检查的内容;未选中的框不会发送到服务器。

You'll already get only the ones that were checked; unchecked boxes aren't sent to the server.

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