0

在路线中

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[] 值也会变为空白。

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

4

0 回答 0