我如何通过其他对象检查collection_check_boxes?

时间:2016-06-28 15:17:37

标签: ruby-on-rails ruby

我有这样的collection_check_boxes。

<%= collection_check_boxes(:car_insurance_object_model,
                                                   :car_model_id,
                                                   car_model_each_brand ,
                                                   :id,:code_name) do |b|
    b.label { b.check_box + b.text }
end %>

它可以像这样正确显示。

enter image description here

但是我想要检查一下它是否已经存在于我的car_insurance_object和car_model表的多对多表中。

那么如何通过@selected_model对象检查collection_check_boxes

@selected_model = @car_insurance_object.car_models

谢谢!

0 个答案:

没有答案