1
在我的Rails應用程序我使用主動管理新動作,現在我有這樣的模式(僅部分)Rails的activeadmin與相關模型
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必須相同......如何做到這一點?用另一種形式創建動作?
在這種情況下,我必須寫很多動作和控制器...... – brabertaser19
是的,確切地說。 :) –
但也是一個很好的做法,編寫自己的新的創建等方法和自己的路線? – brabertaser19