Ruby-China 的代码中,某个主题下,RSS 只输出最近的 20 篇文章,代码如下。
def node_feed
@node = Node.find(params[:id])
@topics = @node.topics.recent.without_body.limit(20)
response.headers["Content-Type"] = "application/rss+xml"
render :layout => false
end
可是在 RSS 阅读器中,比如 google reader. 可以阅读 RSS 曾经输出的所有文章?
Google 记住了历史记录?