在Rails 3.2应用程序中,我有一个带有:caption
字段的Photo模型,并使用Carrierwave来处理图像文件。
我正在尝试创建包含图像的原子提要。这样做的正确方法是什么?
目前我有
#views/photos/index.atom.builder
atom_feed do |feed|
feed.title "Photos"
@photos.each do |photo|
feed.entry photo do |entry|
entry.title photo.title
entry.summary photo.caption
entry.image image_path(photo.file.url(:large))
entry.author do |author|
author.name photo.user.name
end
end
end
end
虽然这确实会在Feed标记中添加图片标记,但我认为这可能不是正确的语法?
<entry>
...
<image>http://path/to/image.jpg</image>
...
</entry>
在那里我看到了以下语法
<entry>
<content type="image/jpg" src="/path/to/image.png" />
</entry>
如果有更多知识的人能告诉我,我会很感激:
答案 0 :(得分:7)
我找到了自己问题的答案。
对于Atom供稿,可以将图像添加到img标签内的内容中。
或者它可以作为附件添加:
feed.entry photo do |entry|
entry.link href: photo.file.url(:large), rel:"enclosure", type:"image/jpeg"
end
最后我从Atom切换到RSS feed(这是我使用的特殊情况,因为我需要稍后操作Feed并发现RSS更容易做到这一点。)
同样,图像可以作为img添加到内容标记内的RSS中。
或者可以添加为附件:
@photos.each do |photo|
xml.item do
xml.media :content, url: photo.file.url(:fullpage), type:"image/jpeg", height:770, width:770
xml.media :thumbnail, url: photo.file.url(:thumb), height: 50, width:50
end
end
为了构建这样的RSS源,可能需要在RSS源的头部添加一些属性。
我看起来像这样
xml.instruct! :xml, version: "1.0"
xml.rss version: "2.0", "xmlns:media" => "http://search.yahoo.com/mrss/", "xmlns:atom" => "http://www.w3.org/2005/Atom" do
...