gpt4 book ai didi

ruby-on-rails - Rails 3 事件管理员。如何使用不同的外键设置 has_many 和 belongs_to?

转载 作者:太空宇宙 更新时间:2023-11-03 16:35:12 24 4
gpt4 key购买 nike

所以我有一个最多可以有三个托运公司的货件。所以我有这个...

shipment belongs_to shipper
shipper has_many shipments

但我在发货表中又添加了两列:shipper_id_2 和 shipper_id_3。我如何设置关联并让 ActiveAdmin 实现它?

最佳答案

我建议使用介于这两者之间的类来将 cargo 分配给托运人。

class ShippingAssignments
belongs_to :shipment
belongs_to :shipper
end

class Shipment
has_many :shipping_assignments
has_many :shippers, :through => :shipping_assignments
end

class Shipper
has_many :shipping_assignments
has_many :shipments, :through => :shipping_assignments
end

您可以使用验证器强制执行 3 个托运人的限制。

关于ruby-on-rails - Rails 3 事件管理员。如何使用不同的外键设置 has_many 和 belongs_to?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8794740/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com