26
ฉันจะตั้งค่าเริ่มต้นใน ActiveRecord ได้อย่างไร
ฉันจะตั้งค่าเริ่มต้นใน ActiveRecord ได้อย่างไร ฉันเห็นโพสต์จาก Pratik ที่อธิบายโค้ดอันน่าเกลียดและซับซ้อน: http://m.onkey.org/2007/7/24/how-to-set-default-values-in-your-model class Item < ActiveRecord::Base def initialize_with_defaults(attrs = nil, &block) initialize_without_defaults(attrs) do setter = lambda { |key, value| self.send("#{key.to_s}=", value) unless !attrs.nil? && attrs.keys.map(&:to_s).include?(key.to_s) } setter.call('scheduler_type', 'hotseat') yield self if block_given? end end alias_method_chain :initialize, :defaults end ฉันได้เห็นตัวอย่างต่อไปนี้ googling ไปรอบ ๆ : def initialize …