如何在Rails 3上实现多重选择

发布于 2024-11-30 12:38:35 字数 306 浏览 1 评论 0原文

我有一个索引,其中显示文档列表。我想实现多重选择,以便对用户选择的文档执行不同的操作

创建了一个

<%= check_box_tag 'id', 'document.id %>

我已在 form_tag 内为每个文档

,但是如果我选择多个复选框,则传递给操作的参数将被覆盖并且我刚刚收到我在 id 参数中选择的最后一个复选框的 id。

¿任何人都知道如何实现多重选择? ¿还有其他方法吗? 我正在运行 Rails 3 和 Ruby 1.8.7

提前致谢

I have an index where I'm showing a list of documents. I would like to implement a multiple select in order to do different actions to the documents the user has selected

I have created a

<%= check_box_tag 'id', 'document.id %>

for each document, inside a form_tag

But if I select multiple checkboxes, the params that are passed to the action are overwrited and I'm just receiving the id of the last checkbox I've selected in the id param.

¿Anyone knows how to implement multiple select?¿Any other approach?
I'm running Rails 3 and Ruby 1.8.7

Thanks in advance

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

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

发布评论

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

评论(2

痴情 2024-12-07 12:38:35

您需要设置 :multiple =>; true

<%= check_box_tag 'id', document.id, :multitple => true %>

这将为您提供 params[:id] 中数组形式的结果

You need to set :multiple => true

<%= check_box_tag 'id', document.id, :multitple => true %>

This will give you results in form of an array in params[:id]

何处潇湘 2024-12-07 12:38:35

小修正(复数):

<%= check_box_tag 'ids[]', document.id %>

确保您的模型正确设置为 attr_accessible ,例如 :document_ids

Minor correction (plural):

<%= check_box_tag 'ids[]', document.id %>

ensure your model is properly set for attr_accessible something like :document_ids

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