1

根据文档,我试图覆盖一个条目的updated值,但是我在我的 RSS 提要中获得了两个字段。Defaults to the updated_at attribute on the record if one such exists.updatedupdated

如果我用这个(截断的)示例设置不同的更新值......

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>
4

1 回答 1

2

您必须将已发布和更新的选项传递到条目中。

feed.entry(item, :published => item.published_at, 
                   :updated => item.published_at) do |entry|
  entry.content item.body, :type => 'html'
end
于 2013-01-28T22:42:25.003 回答