我有一个带虚拟属性的模型:
attr_accessible :published_at
def published_at_text
I18n.localize(published_at, format: :long_no_day_with_seconds) if published_at
end
def published_at_text=(text)
self.published_at = Chronic.parse(text)
end
这在单元测试中工作正常,但在视图中更改published_at_text字段时不会保存。我已尝试使用attr_accessible :published_at_text
,并将published_at_will_change!
添加到setter方法,但我无法使其工作。
development.log
表示已传入已更改的published_at_text值,但在setter中添加对Rails.logger的调用似乎表明它甚至没有被调用。
我在这里缺少什么?
答案 0 :(得分:0)
好吧,你没有提供使用params hash创建对象的控制器方法,但我可以猜一下。
您应该使用传递给控制器的参数调用显式设置器。
然后检查您的模型是否更新了值。
答案 1 :(得分:0)
找到它:虚拟属性的字段没有作为文章的一部分传回,因此它们没有显示在params散列中。
取而代之:
<%= text_field_tag 'article_published_at_text', @article.published_at_text, class: 'text_date show_seconds' %>
用这个:
<%= text_field_tag 'article_published_at_text', @article.published_at_text, name: 'article[published_at_text]', class: 'text_date show_seconds' %>
修复了问题。