根据文档,我试图覆盖一个条目的updated
值,但是我在我的 RSS 提要中获得了两个字段。Defaults to the updated_at attribute on the record if one such exists.
updated
updated
如果我用这个(截断的)示例设置不同的更新值......
feed.entry(item) do |entry|
entry.updated(item.not_the_updated_at_value.strftime("%Y-%m-%dT%H:%M:%SZ"))
end
updated
...然后我的 RSS 提要中有两个字段:
<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>