如何使用 JavaScript 解析 RSS 提要?

IT技术 javascript html rss
2021-02-02 00:49:54

我需要解析 RSS 提要(XML 2.0 版)并在 HTML 页面中显示解析的详细信息。

6个回答

解析提要

使用jQueryjFeed

(真的不推荐那个,请参阅其他选项。)

jQuery.getFeed({
   url     : FEED_URL,
   success : function (feed) {
      console.log(feed.title);
      // do more stuff here
   }
});

使用jQuery的内置 XML 支持

$.get(FEED_URL, function (data) {
    $(data).find("entry").each(function () { // or "item" or whatever suits your feed
        var el = $(this);

        console.log("------------------------");
        console.log("title      : " + el.find("title").text());
        console.log("author     : " + el.find("author").text());
        console.log("description: " + el.find("description").text());
    });
});

使用jQueryGoogle AJAX Feed API

$.ajax({
  url      : document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent(FEED_URL),
  dataType : 'json',
  success  : function (data) {
    if (data.responseData.feed && data.responseData.feed.entries) {
      $.each(data.responseData.feed.entries, function (i, e) {
        console.log("------------------------");
        console.log("title      : " + e.title);
        console.log("author     : " + e.author);
        console.log("description: " + e.description);
      });
    }
  }
});

但这意味着您依赖于他们在线且可访问。


建筑内容

一旦您成功地从提要中提取了您需要的信息,您就可以创建DocumentFragments(document.createDocumentFragment()包含document.createElement()您想要注入以显示您的数据的元素(使用创建)。


注入内容

在页面上选择您想要的容器元素并将您的文档片段附加到它,然后简单地使用 innerHTML 完全替换其内容。

就像是:

$('#rss-viewer').append(aDocumentFragmentEntry);

或者:

$('#rss-viewer')[0].innerHTML = aDocumentFragmentOfAllEntries.innerHTML;

测试数据

使用这个问题的 feed,在撰写本文时给出:

<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:re="http://purl.org/atompub/rank/1.0">
    <title type="text">How to parse a RSS feed using javascript? - Stack Overflow</title>
    <link rel="self" href="https://stackoverflow.com/feeds/question/10943544" type="application/atom+xml" />
        <link rel="hub" href="http://pubsubhubbub.appspot.com/" />        
    <link rel="alternate" href="https://stackoverflow.com/q/10943544" type="text/html" />
    <subtitle>most recent 30 from stackoverflow.com</subtitle>
    <updated>2012-06-08T06:36:47Z</updated>
    <id>https://stackoverflow.com/feeds/question/10943544</id>
    <creativeCommons:license>http://www.creativecommons.org/licenses/by-sa/3.0/rdf</creativeCommons:license> 
    <entry>
        <id>https://stackoverflow.com/q/10943544</id>
        <re:rank scheme="http://stackoverflow.com">2</re:rank>
        <title type="text">How to parse a RSS feed using javascript?</title>
        <category scheme="https://stackoverflow.com/feeds/question/10943544/tags" term="javascript"/><category scheme="https://stackoverflow.com/feeds/question/10943544/tags" term="html5"/><category scheme="https://stackoverflow.com/feeds/question/10943544/tags" term="jquery-mobile"/>
        <author>
            <name>Thiru</name>
            <uri>https://stackoverflow.com/users/1126255</uri>
        </author>
        <link rel="alternate" href="https://stackoverflow.com/questions/10943544/how-to-parse-a-rss-feed-using-javascript" />
        <published>2012-06-08T05:34:16Z</published>
        <updated>2012-06-08T06:35:22Z</updated>
        <summary type="html">
            &lt;p&gt;I need to parse the RSS-Feed(XML version2.0) using XML and I want to display the parsed detail in HTML page, I tried in many ways. But its not working. My system is running under proxy, since I am new to this field, I don&#39;t know whether it is possible or not. If any one knows please help me on this. Thanks in advance.&lt;/p&gt;

        </summary>
    </entry>
    <entry>
        <id>https://stackoverflow.com/questions/10943544/-/10943610#10943610</id>
        <re:rank scheme="http://stackoverflow.com">1</re:rank>
        <title type="text">Answer by haylem for How to parse a RSS feed using javascript?</title>
        <author>
            <name>haylem</name>
            <uri>https://stackoverflow.com/users/453590</uri>
        </author>    
        <link rel="alternate" href="https://stackoverflow.com/questions/10943544/how-to-parse-a-rss-feed-using-javascript/10943610#10943610" />
        <published>2012-06-08T05:43:24Z</published>   
        <updated>2012-06-08T06:35:22Z</updated>
        <summary type="html">&lt;h1&gt;Parsing the Feed&lt;/h1&gt;

&lt;h3&gt;With jQuery&#39;s jFeed&lt;/h3&gt;

&lt;p&gt;Try this, with the &lt;a href=&quot;http://plugins.jquery.com/project/jFeed&quot; rel=&quot;nofollow&quot;&gt;jFeed&lt;/a&gt; &lt;a href=&quot;http://www.jquery.com/&quot; rel=&quot;nofollow&quot;&gt;jQuery&lt;/a&gt; plug-in&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;jQuery.getFeed({
   url     : FEED_URL,
   success : function (feed) {
      console.log(feed.title);
      // do more stuff here
   }
});
&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;With jQuery&#39;s Built-in XML Support&lt;/h3&gt;

&lt;pre&gt;&lt;code&gt;$.get(FEED_URL, function (data) {
    $(data).find(&quot;entry&quot;).each(function () { // or &quot;item&quot; or whatever suits your feed
        var el = $(this);

        console.log(&quot;------------------------&quot;);
        console.log(&quot;title      : &quot; + el.find(&quot;title&quot;).text());
        console.log(&quot;author     : &quot; + el.find(&quot;author&quot;).text());
        console.log(&quot;description: &quot; + el.find(&quot;description&quot;).text());
    });
});
&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;With jQuery and the Google AJAX APIs&lt;/h3&gt;

&lt;p&gt;Otherwise, &lt;a href=&quot;https://developers.google.com/feed/&quot; rel=&quot;nofollow&quot;&gt;Google&#39;s AJAX Feed API&lt;/a&gt; allows you to get the feed as a JSON object:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$.ajax({
  url      : document.location.protocol + &#39;//ajax.googleapis.com/ajax/services/feed/load?v=1.0&amp;amp;num=10&amp;amp;callback=?&amp;amp;q=&#39; + encodeURIComponent(FEED_URL),
  dataType : &#39;json&#39;,
  success  : function (data) {
    if (data.responseData.feed &amp;amp;&amp;amp; data.responseData.feed.entries) {
      $.each(data.responseData.feed.entries, function (i, e) {
        console.log(&quot;------------------------&quot;);
        console.log(&quot;title      : &quot; + e.title);
        console.log(&quot;author     : &quot; + e.author);
        console.log(&quot;description: &quot; + e.description);
      });
    }
  }
});
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;But that means you&#39;re relient on them being online and reachable.&lt;/p&gt;

&lt;hr&gt;

&lt;h1&gt;Building Content&lt;/h1&gt;

&lt;p&gt;Once you&#39;ve successfully extracted the information you need from the feed, you need to create document fragments containing the elements you&#39;ll want to inject to display your data.&lt;/p&gt;

&lt;hr&gt;

&lt;h1&gt;Injecting the content&lt;/h1&gt;

&lt;p&gt;Select the container element that you want on the page and append your document fragments to it, and simply use innerHTML to replace its content entirely.&lt;/p&gt;
</summary>
    </entry></feed>

处决

使用 jQuery 的内置 XML 支持

调用:

$.get('https://stackoverflow.com/feeds/question/10943544', function (data) {
    $(data).find("entry").each(function () { // or "item" or whatever suits your feed
        var el = $(this);

        console.log("------------------------");
        console.log("title      : " + el.find("title").text());
        console.log("author     : " + el.find("author").text());
        console.log("description: " + el.find("description").text());
    });
});

打印出来:

------------------------
title      : How to parse a RSS feed using javascript?
author     : 
            Thiru
            https://stackoverflow.com/users/1126255

description: 
------------------------
title      : Answer by haylem for How to parse a RSS feed using javascript?
author     : 
            haylem
            https://stackoverflow.com/users/453590

description: 

使用 jQuery 和 Google AJAX API

调用:

$.ajax({
  url      : document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent('https://stackoverflow.com/feeds/question/10943544'),
  dataType : 'json',
  success  : function (data) {
    if (data.responseData.feed && data.responseData.feed.entries) {
      $.each(data.responseData.feed.entries, function (i, e) {
        console.log("------------------------");
        console.log("title      : " + e.title);
        console.log("author     : " + e.author);
        console.log("description: " + e.description);
      });
    }
  }
});

打印出来:

------------------------
title      : How to parse a RSS feed using javascript?
author     : Thiru
description: undefined
------------------------
title      : Answer by haylem for How to parse a RSS feed using javascript?
author     : haylem
description: undefined
你可能有完整的工作代码片段在这里。我相信你可以自己解决剩下的问题。
2021-03-13 00:49:54
@蒂米:做什么?你是蒂鲁的朋友吗?您有类似的问题报告技术。我只是将最后 2 个代码片段复制粘贴到我的控制台中并运行它们并按预期获得输出。你为什么资源做了什么,怎么做的?
2021-03-18 00:49:54
不推荐使用 Google AJAX API。自 2017 年 1 月起不再提供。
2021-03-18 00:49:54
感谢您的回答海勒姆。但我没有得到这个输出。用javascript可以吗?
2021-03-24 00:49:54
@Thiru:我刚刚用这个问题的 RSS 提要(stackoverflow.com/feeds/question/10943544尝试了最后一种方法,对我来说效果很好。
2021-03-27 00:49:54

另一个已弃用 (感谢@daylight)选项,对我来说是最简单的(这就是我在SpokenToday.info 中使用的):

不使用 JQueryGoogle Feed API,只需 2 个步骤:

  1. 导入库:

    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript">google.load("feeds", "1");</script>
    
  2. 查找/加载提要(文档):

    var feed = new google.feeds.Feed('http://www.google.com/trends/hottrends/atom/feed?pn=p1');
    feed.load(function (data) {
        // Parse data depending on the specified response format, default is JSON.
        console.dir(data);
    });
    
  3. 要解析数据,请查看有关响应格式的文档

自 2015 年 2 月 12 日起,Google Feed API 已弃用且不再有效。无赖
2021-03-25 00:49:54
现在 Google 的 API 已关闭,有人知道合适的替代方案吗?
2021-03-27 00:49:54
Google 说:此 API 已正式弃用。
2021-03-31 00:49:54
不推荐使用 Google AJAX API。自 2017 年 1 月起不可用
2021-04-06 00:49:54
根据该代码,您能否添加输入提要 url 的提示,然后连接该属性以包含一个值,以便解析您想要的任何 rss 提要?例如,如果我正在处理多个图像,我可以连接字符串和值:document.getElementById('image').style.backgroundImage = "url('" + src + "')";
2021-04-10 00:49:54

如果您正在为您的 rss 小部件寻找一个简单且免费的Google Feed API替代方案,那么rss2json.com可能是一个合适的解决方案。

您可以尝试查看以下api 文档的示例代码是如何工作的

google.load("feeds", "1");

    function initialize() {
      var feed = new google.feeds.Feed("https://news.ycombinator.com/rss");
      feed.load(function(result) {
        if (!result.error) {
          var container = document.getElementById("feed");
          for (var i = 0; i < result.feed.entries.length; i++) {
            var entry = result.feed.entries[i];
            var div = document.createElement("div");
            div.appendChild(document.createTextNode(entry.title));
            container.appendChild(div);
          }
        }
      });
    }
    google.setOnLoadCallback(initialize);
<html>
  <head>    
     <script src="https://rss2json.com/gfapi.js"></script>
  </head>
  <body>
    <p><b>Result from the API:</b></p>
    <div id="feed"></div>
  </body>
</html>

对于阅读本文的其他人(从 2019 年开始),不幸的是,大多数 JS RSS 阅读实现现在都不起作用。首先,Google API 已关闭,因此这不再是一种选择,并且由于 CORS 安全策略,您现在通常无法跨域请求 RSS 提要。

使用https://www.raymondcamden.com/2015/12/08/parsing-rss-feeds-in-javascript-options (2015)上的示例,我得到以下信息:

Access to XMLHttpRequest at 'https://feeds.feedburner.com/raymondcamdensblog?format=xml' from origin 'MYSITE' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

这是正确的,是最终网站的安全预防措施,但现在确实意味着上述答案不太可能奏效。

我的解决方法可能是通过 PHP 解析 RSS 提要并允许 javascript 访问我的 PHP,而不是尝试访问最终目的地提要本身。

如果你想使用一个普通的 javascript API,https://github.com/hongkiat/js-rss-reader/有一个很好的例子

完整说明见https://www.hongkiat.com/blog/rss-reader-in-javascript/

它使用fetch方法作为异步获取资源的全局方法。下面是一段代码:

fetch(websiteUrl).then((res) => {
  res.text().then((htmlTxt) => {
    var domParser = new DOMParser()
    let doc = domParser.parseFromString(htmlTxt, 'text/html')
    var feedUrl = doc.querySelector('link[type="application/rss+xml"]').href
  })
}).catch(() => console.error('Error in fetching the website'))
一位 Mozilla 贡献者解决了我在自己的项目中使用此源代码的问题,他建议我使用 CORS 代理。它可以在服务器端工作,也许在 Node.JS 中工作,但它不能像在客户端那样工作。我不是唯一一个对这个源代码有这个问题的人,我在一篇关于 css-tricks 的类似文章中看到了一些评论:css-tricks.com/how-to-fetch-and-parse-rss-feeds-in -javascript/...你在一个非常特殊的情况下。
2021-03-14 00:49:54
您引用的文章中的示例无法按原样工作。您需要修改 rss.js 中的第 15 行和第 26 行,以使用 CORS 代理使其工作。如果你不这样做,你会因为同源策略而得到一些错误:developer.mozilla.org/en-US/docs/Web/HTTP/CORS/Errors/...此外,fetch API 在Microsoft Internet Explorer 11,而是使用 XMLHTTPRequest:developer.microsoft.com/en-us/microsoft-edge/status/fetchapi我在我自己的服务器上使用了这个源代码。我鼓励您在发布之前花一些时间进行一些检查。
2021-03-18 00:49:54
不,CORS 问题与您的答案有关。您引用的文章中的示例不能按原样使用,显然由主机来设置这些标头,不能在客户端修复,唯一的解决方法是使用 CORS 代理。您是否尝试过本文中提到的源代码?
2021-04-01 00:49:54
当然,我们在混合移动应用程序中使用它没有任何问题。
2021-04-01 00:49:54
CORS 问题与此答案无关。请重新阅读您提到的 CORS 链接或其他一些有关修复 CORS 问题的资源 stackoverflow.com/questions/10636611/...
2021-04-10 00:49:54