26
Làm cách nào tôi có thể đặt giá trị mặc định trong ActiveRecord?
Làm cách nào tôi có thể đặt giá trị mặc định trong ActiveRecord? Tôi thấy một bài đăng từ Pratik mô tả một đoạn mã xấu xí, phức tạp: 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 …