如何使用 javascript/jquery 显示带图像的 RSS 提要
如何使用 jquery 显示带有图像的 Rss 提要?我尝试了一些非常流行的插件,例如:
1. gFeed
2. jfeed
3. zRssfeed
但似乎没有任何东西支持图像。做到这一点的最好和最简单的方法是什么?现在有可用的插件吗?
How can i show Rss feeds with images using jquery? I tried some very popular plugins like:
1. gFeed
2. jfeed
3. zRssfeed
But nothing seems to support images. What is the best and easiest way to do this? Are there any plugins already available?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
zRSSFeed 插件确实支持提要中的图像。默认情况下,插件将显示简短的描述。要包含图像,请将“snippet”选项设置为“false”。
例如:
有关在线示例,请参阅:
http://zazar.net/developers/jquery/ zrssfeed/example_images.html
The zRSSFeed plugin does support images within feeds. By default the plugin will show an abbreviated description. To include images set the 'snippet' option to 'false'.
For example:
For an online example see:
http://zazar.net/developers/jquery/zrssfeed/example_images.html
您应该能够使用简单的 jQuery ajax 调用来获取 RSS。
像使用上面的 URL一样
,我可以看到图像作为 HTML
(当然是转义的)标签返回。你只需要取消转义它们并将它们嵌入到你的 html 中。
使用 javascript unescape 函数 即可简单地取消转义。
使用名为 REST Client 的 Firefox 插件和上述 URL。添加请求头Name=
Accept
, Value=application/rssxml
,自己查看返回的数据。You should be able to fetch RSS using simple jQuery ajax call.
Something like
Using the URL above, I can see that images are return as HTML
<img>
(escaped ofcourse) tags. You just need to unescape them and embed them in your html.To unescampe simple using the javascript unescape function.
Use Firefox addon called REST Client with the above URL. Add a request header Name=
Accept
, Value=application/rssxml
to see the returned data yourself.