如何使用 javascript/jquery 显示带图像的 RSS 提要

发布于 2024-11-30 01:06:04 字数 355 浏览 0 评论 0原文

如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

流心雨 2024-12-07 01:06:04

zRSSFeed 插件确实支持提要中的图像。默认情况下,插件将显示简短的描述。要包含图像,请将“snippet”选项设置为“false”。

例如:

$(document).ready(function () {
    $('#ticker1').rssfeed('http://feeds.bbc.co.uk/iplayer/highlights/tv/list',{
        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:

$(document).ready(function () {
    $('#ticker1').rssfeed('http://feeds.bbc.co.uk/iplayer/highlights/tv/list',{
        snippet: false
    });
});

For an online example see:

http://zazar.net/developers/jquery/zrssfeed/example_images.html

摇划花蜜的午后 2024-12-07 01:06:04

您应该能够使用简单的 jQuery ajax 调用来获取 RSS。
像使用上面的 URL一样

$.ajax({
      accept: 'application/rss+xml',
      url: 'http://rss.cnn.com/fortunebrainstormtech',
      success: function(){}
});

,我可以看到图像作为 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

$.ajax({
      accept: 'application/rss+xml',
      url: 'http://rss.cnn.com/fortunebrainstormtech',
      success: function(){}
});

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文