红宝石。我使用标准生成器来生成 rss。我的构建器文件是:
xml.instruct! :xml, :version => "1.0"
xml.rss(:version => "2.0") {
xml.channel {
xml.title(@digest.name)
xml.description(@digest.name)
xml.link(url_for(:only_path => false))
for post in @posts
xml.item do
xml.title(post.title || '')
xml.description(post.summary)
xml.link(post.url)
xml.source(post.feed.name)
xml.guid(post.url)
xml.pubDate(post.pub_date.to_s(:rfc822))
end
end
}
}
要生成 rss feed( require rss
),我使用下一个代码:
xml.source(post.feed.name)
并得到:
<source>Cnn news</source>
但我想要这样的东西:
<source url="http://news.cnn.com">Cnn news</source>
如何将参数添加url
到 xml 源标记?