collection_select 和 has_and_belongs_to_many 关系

发布于 2024-11-03 04:47:30 字数 562 浏览 0 评论 0原文

我有两个模型 - 联系人和组织 - 设置为 has_and_belongs_to_many 关系:

class Contact < ActiveRecord::Base
    has_and_belongs_to_many :organizations
end

class Organization < ActiveRecord::Base
    has_and_belongs_to_many :contacts
end

在联系人的新视图中,我有以下 collection_select:

<%= collection_select('contact', 'organization_ids', @organizations, :id, :name, {}, { :multiple => :true, :name => 'contact[organization_ids][]'}) %>

这可行,但对于为此关系创建多选框似乎过于复杂。

对于这种特殊的关系,有更好的帮手吗?我更喜欢使用多选框 - 而不是复选框。

I have two models - Contacts and Organizations - setup in a has_and_belongs_to_many relationship:

class Contact < ActiveRecord::Base
    has_and_belongs_to_many :organizations
end

class Organization < ActiveRecord::Base
    has_and_belongs_to_many :contacts
end

In the contact's new view, I have the following collection_select:

<%= collection_select('contact', 'organization_ids', @organizations, :id, :name, {}, { :multiple => :true, :name => 'contact[organization_ids][]'}) %>

This works, but seems overly complicated for creating a multi-select box for this relationship.

Is there a better helper available for this particular relationship? I'd prefer to use a multi-select box - not checkboxes.

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

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

发布评论

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

评论(1

独﹏钓一江月 2024-11-10 04:47:30

试试这个:

<%= check_box_tag "contact[organization_ids][]", organization.id, @contact.organizations.include?(organization) %>

Try this:

<%= check_box_tag "contact[organization_ids][]", organization.id, @contact.organizations.include?(organization) %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文