我正在使用7 Patterns to Refactor Fat ActiveRecord Models #3中所述的表单对象,目前我在存储日期方面遇到问题。
这是我所做的:
class MyModelForm
# ...
def initialize(my_model: MyModel.new, params: {})
@my_model, @params = my_model, params
@my_model.date_field_on = Date.from_params @params, "date_field_on" if @params.present?
end
end
在哪里Date.from_params
实现如:
class Date
def self.from_params(params, field_name)
begin
year = params["#{ field_name }(1i)"]
month = params["#{ field_name }(2i)"]
day = params["#{ field_name }(3i)"]
Date.civil year.to_i, month.to_i, day.to_i if year && month && day
rescue ArgumentError => e
# catch that because I don't want getting error when date cannot be parsed (invalid)
end
end
end
我不能只使用@my_model.assign_attributes @params.slice(*ACCEPTED_ATTRIBUTES)
,因为我的params["date_field_on(<n>i)"]
将被跳过并且日期不会被存储。
有没有更好的方法来使用表单对象处理日期字段?