如何获取 RSS 使用 JavaScript、jQuery、Angular

How to get RSS use JavaScript, jQuery, Angular

我有一个 RSS 页面是 http://uat.specialty.mims.com/rss-feed/RSS-SG.xml。我想从该 RSS 获取数据并转换为 JSON.

我尝试使用 Google Feed API,但是 that API is no longer available

请帮助我如何获取上面的 RSS 并转换为 JSON 使用基本 JavaScript、JS 库、Angular.

您可以使用 Yahoo 的 YQL。

https://jsfiddle.net/iamjpg/bg4gq5hj/

打开您的控制台以查看 JSON 中的响应。

$.getJSON('https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20xml%20where%20url%3D%27http%3A%2F%2Fuat.specialty.mims.com%2Frss-feed%2FRSS-SG.xml%27&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys', function(res) {
    console.log(res)
})

对 YQL 的引用:

https://developer.yahoo.com/yql/