根据documentation,条目的updated
值Defaults to the updated_at attribute on the record if one such exists.
我试图覆盖updated
值,但我得到两个updated
我的RSS Feed中的字段。
如果我使用此(截断的)示例设置不同的更新值...
feed.entry(item) do |entry|
entry.updated(item.not_the_updated_at_value.strftime("%Y-%m-%dT%H:%M:%SZ"))
end
...然后我最终在RSS Feed中有两个updated
字段:
<entry>
<id>1</id>
<published>2010-03-30T13:11:07-07:00</published>
<updated>2010-03-30T13:11:07-07:00</updated>
<link rel="alternate" type="text/html" href="http://example.com/1"/>
<title>Title</title>
<content type="html">Content</content>
<url>http://example.com/1/</url>
<updated>2012-07-10T11:05:32Z</updated>
<author>
<name>Author</name>
</author>
</entry>
答案 0 :(得分:2)
您必须将已发布和已更新的选项传递到条目中。
feed.entry(item, :published => item.published_at,
:updated => item.published_at) do |entry|
entry.content item.body, :type => 'html'
end