ruby-on-rails – Rails 4 collection_check_boxes,带有has_many through

我正在尝试将类别与产品相关联.
到目前为止我实现它的方式是

Class Product
    has_many :categorizations
    has_many :categories,through: :categorizations

.

Class Categorization
    belongs_to :product
    belongs_to :category

.

Class Category
    has_many :categorizations
    has_many :products,through: :categorizations

在我的产品/ _form.html.erb中

<div class="field">
<%= f.label :category_id %><br />
<%= collection_check_Boxes(:product,:category_id,Category.all,:id,:name) %>
</div>

我不确定如何正确地做到这一点.


更改:: category_id to:category_ids并设置强参数

def product_params
  params.require(:product).permit(:title,:description,:price,:category_ids => [])
end

解决方法

由于这种关系是多对多的,因此给定的产品应该响应category_ids(复数),而不是category_id(单数).

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...