我确信,我只是这样做,有人能否向我指出正确的方向?
我需要确定有效日期至修改格式日期的价值。
www.un.org/Depts/DGACM/index_french.htm
class Request < ActiveRecord::Base
def format_date=(format_date)
date_a = format_date.split("/")
month, day, year = date_a
effective_date = Date.parse("#{year}-#{month}-#{day}")
end
def format_date
effective_date
end
end
Request.create (format_date: “04/21/2012”>
is not establishing the Value to effect_date
Edit:我猜测这真的意思,因此,我将尽力解释:
我需要从格式(而不是数据库中的一栏)中确定有效日期的价值。 我正在使用格式_日期方法,将日期从格式_日期改为生效日期。 如果这只字不提,让我知道。 我不相信还有什么。