Rail check_box_tag值即使选中也为空

时间:2013-09-21 17:03:55

标签: ruby-on-rails-3.2

在路线

put 'posts_filter', to: 'articles#index'

在视图中

 %ul
   = form_tag posts_filter_path, method: :put do
    - @tags.each do |tag|
      %li
        = check_box_tag "tag_ids[]", tag.id
        = tag.name
        = submit_tag "Filter"

问题是:即使选中了复选框,tag_ids []值也会显示为空白。

请有人帮我解决这个问题。

0 个答案:

没有答案