我正在开发一个 Ruby/Rails 应用程序,它会抓取另一个网站并使用数据呈现 RSS 提要。
因为这个应用程序是在 Heroku 上构建的,所以我通过控制器生成 RSS 提要,而不是将其转储到文件系统并将其作为资产提供。
但是,当我设置render :content_type
哈希时,没有效果。响应的内容类型保持不变text/plain
。
news
FeedController上的操作
def news
do_scrape
@posts = UbuEntry.all(:order => "created_at DESC", :limit => 400)
render :layout => false, :content_type => Mime::RSS
end
完整路线.rb
UbuWebRSS::Application.routes.draw do
root :to => 'index#index'
scope :format => true, :constraints => { :format => 'rss' } do
get 'feed/news' => 'feed#news'
end
end
您可以在此处查看实时结果:
http://www.ubuwebrss.com/feed/news.rss
以及完整的源代码:
https://github.com/freen/ubuwebrss/
我在 Google 和 StackOverflow 上环顾四周,但不清楚我做错了什么。
有小费吗?谢谢!
供参考:
视图脚本:/app/views/feed/news.rss.builder:
xml.instruct! :xml, :version => "1.0"
xml.rss :version => "2.0" do
xml.channel do
xml.title "UbuWeb"
xml.description "UbuWeb is a completely independent resource dedicated to all strains of the avant-garde, ethnopoetics, and outsider arts."
xml.link 'http://www.ubu.com'
for post in @posts
xml.item do
xml.title post.title
description = post.description.to_s
unless description.empty?
# Manually add description for custom HTML sanitizing
description = @sanitizer_basic.clean(description)
xml << " " * 6
xml << "<description><![CDATA[" + description + "]]></description>\n"
end
xml.pubDate post.created_at.to_s(:rfc822)
xml.link post.href
xml.guid post.href
end
end
end
end