check_box with fields_for



这是代码

= f.fields_for :category do |fc|
  = fc.check_box :is_visible

我遇到了这里描述的情况 http://api.rubyonrails.org/classes/ActionView/Helpers/FormBuilder.html#method-i-check_box Unfortunately that workaround does not work when the check box goes within an array-like parameter, as in ...

发生的情况是,在未选中复选框的情况下更新模型时,is_visible保持不变。此问题已记录在案,建议的修复程序已In that case it is preferable to either use check_box_tag or to use hashes instead of arrays.

我不知道如何实施解决方案。请指教。

实际上有效,问题Unpermitted parameters: visible

在控制器中允许visible解决了此问题。

相关内容

  • 没有找到相关文章

最新更新