在我的 Rails 应用程序中,我使用活动管理员,现在我有这样的模型(仅部分)
class Distributor < ActiveRecord::Base
attr_accessible :co****ime
has_many :price_lists
has_many :other_products_cross_lists
end
class OtherProductsCrossList < ActiveRecord::Base
attr_accessible :cross***pe_id
belongs_to :product_type
belongs_to :distributor
belongs_to :accumulator
belongs_to :oil
end
class Accumulator < ActiveRecord::Base
attr_accessible :capa***age
has_many :other_products_cross_lists
end
为了安全起见,我* attr...
所以如果我创建一个新的累加器,我也需要这样,使用累加器字段我看到 OtherProductsCrossList 字段,并创建累加器,并为它交叉,我也需要做这样的按钮:更多,所以如果我需要创建多个交叉这个累加器它会做到这一点。另请注意, id 和 refferertable_id 必须相同......如何做到这一点?用另一种形式创建动作?