当未选择任何选项时,collection_select 不会让 ActiveRecord 更新其集合

发布于 2024-09-09 21:04:21 字数 373 浏览 2 评论 0原文

我在两个模型之间有 has_and_belongs_to_many 关联。

我使用 collection_select 以表单形式表示此关联中的另一个模型。当我尝试取消选择 collection_select 中的选项时,collection_select 不会发布其空值,因此,它不会让 ActiveRecord 将任何更新子句传递到数据库。

例如参数就像; 当选择选项时; 参数: {"name_of_model"=>{"name"=>"de2", "other_model_ids"=>["1", "3"]}

当没有选择时; 参数: {"name_of_model"=>{"name"=>"de2" }

有谁知道解决方法吗?

I have has_and_belongs_to_many association between two models.

I made use of collection_select to represent the other model in this association in a form. When I tried to deselect options in collection_select, collection_select doesn't post its empty value and, thus, it doesn't let ActiveRecord pass any update clause to the database.

e.g. Parameters are like;
When onptions selected;
Parameters: {"name_of_model"=>{"name"=>"de2", "other_model_ids"=>["1", "3"]}

When none selected;
Parameters: {"name_of_model"=>{"name"=>"de2" }

Does anyone know a workaround for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七七 2024-09-16 21:04:21

如果没有将 other_model_ids 参数传递给控制器​​操作,则需要将其设置为空数组:

params[:name_of_model][:other_model_ids] ||= []

这将确保如果没有选择,则模型将被正确更新,以便它没有关联的模型 ID。

You need to set the other_model_ids parameter to be an empty array if it is not passed to the controller action:

params[:name_of_model][:other_model_ids] ||= []

This will ensure that if there is no selection then the model will be updated correctly so that it has no associated model IDs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文