私はRails 3にかなり慣れており、RSS/Atomフィードを作成しようとしています。 auto_discovery_link_tag について知っていますが、関連するコントローラ/アクションは次のようになりますか?
ありがとう!
Auto_discovery_link_tagは良いスタートです。 Googleをすばやく検索したところ、 RailsでRSSフィードを作成する方法 のブログ投稿を見つけました。関連付けられているコントローラ/アクションがどのように見えるかを説明します。
controllers/posts_controller.rb
def feed
@posts = Post.all(:select => "title, author, id, content, posted_at", :order => "posted_at DESC", :limit => 20)
respond_to do |format|
format.html
format.rss { render :layout => false } #index.rss.builder
end
end
このファイルの名前はコントローラと一致する必要があります。下記参照:
views/posts/feed.rss.builder
xml.instruct! :xml, :version => "1.0"
xml.rss :version => "2.0" do
xml.channel do
xml.title "Your Blog Title"
xml.description "A blog about software and chocolate"
xml.link posts_url
for post in @posts
xml.item do
xml.title post.title
xml.description post.content
xml.pubDate post.posted_at.to_s(:rfc822)
xml.link post_url(post)
xml.guid post_url(post)
end
end
end
end
ここでRailsyの魔法がすべて起こります。ここでは、RSSフィードXMLが生成され、HTTPに返されます。
Auto_discovery_link_tagの使用:
コントローラで:
respond_to do |format|
format.html
format.atom {render action: 'index', layout: false}
end