如何在Rails 3上实现多重选择
我有一个索引,其中显示文档列表。我想实现多重选择,以便对用户选择的文档执行不同的操作
创建了一个
<%= 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要设置
:multiple =>; true
这将为您提供
params[:id]
中数组形式的结果You need to set
:multiple => true
This will give you results in form of an array in
params[:id]
小修正(复数):
确保您的模型正确设置为
attr_accessible
,例如:document_ids
Minor correction (plural):
ensure your model is properly set for
attr_accessible
something like:document_ids