मुझे RSS फ़ीड (XML संस्करण 2.0) को पार्स करने और HTML पृष्ठ में पार्स किए गए विवरण को प्रदर्शित करने की आवश्यकता है।
मुझे RSS फ़ीड (XML संस्करण 2.0) को पार्स करने और HTML पृष्ठ में पार्स किए गए विवरण को प्रदर्शित करने की आवश्यकता है।
जवाबों:
(वास्तव में सिफारिश नहीं है कि एक, अन्य विकल्प देखें)
jQuery.getFeed({
url : FEED_URL,
success : function (feed) {
console.log(feed.title);
// do more stuff here
}
});
$.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());
});
});
$.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);
});
}
}
});
लेकिन इसका मतलब है कि आप उन पर भरोसा कर रहे हैं जो ऑनलाइन और पहुंच से बाहर हैं।
एक बार जब आप सफलतापूर्वक जानकारी आप फ़ीड से जरूरत निकाला है, आप बना सकते हैं DocumentFragment
के साथ ( document.createDocumentFragment()
के साथ बनाया तत्वों (युक्त document.createElement()
) आप अपने डेटा प्रदर्शित करने के लिए इंजेक्षन करना चाहते हैं।
उस कंटेनर तत्व का चयन करें जिसे आप पृष्ठ पर चाहते हैं और अपने दस्तावेज़ के टुकड़े उसमें जोड़ दें, और इसकी सामग्री को पूरी तरह से बदलने के लिए इनर HTML का उपयोग करें।
कुछ इस तरह:
$('#rss-viewer').append(aDocumentFragmentEntry);
या:
$('#rss-viewer')[0].innerHTML = aDocumentFragmentOfAllEntries.innerHTML;
इस प्रश्न के फ़ीड का उपयोग करना , जो इस लेखन को देता है:
<?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="/programming/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">
<p>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't know whether it is possible or not. If any one knows please help me on this. Thanks in advance.</p>
</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="/programming/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"><h1>Parsing the Feed</h1>
<h3>With jQuery's jFeed</h3>
<p>Try this, with the <a href="http://plugins.jquery.com/project/jFeed" rel="nofollow">jFeed</a> <a href="http://www.jquery.com/" rel="nofollow">jQuery</a> plug-in</p>
<pre><code>jQuery.getFeed({
url : FEED_URL,
success : function (feed) {
console.log(feed.title);
// do more stuff here
}
});
</code></pre>
<h3>With jQuery's Built-in XML Support</h3>
<pre><code>$.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());
});
});
</code></pre>
<h3>With jQuery and the Google AJAX APIs</h3>
<p>Otherwise, <a href="https://developers.google.com/feed/" rel="nofollow">Google's AJAX Feed API</a> allows you to get the feed as a JSON object:</p>
<pre><code>$.ajax({
url : document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&amp;num=10&amp;callback=?&amp;q=' + encodeURIComponent(FEED_URL),
dataType : 'json',
success : function (data) {
if (data.responseData.feed &amp;&amp; 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);
});
}
}
});
</code></pre>
<p>But that means you're relient on them being online and reachable.</p>
<hr>
<h1>Building Content</h1>
<p>Once you've successfully extracted the information you need from the feed, you need to create document fragments containing the elements you'll want to inject to display your data.</p>
<hr>
<h1>Injecting the content</h1>
<p>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.</p>
</summary>
</entry></feed>
लागू:
$.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:
लागू:
$.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
एक अन्य पदावनत (@daylight के लिए धन्यवाद) विकल्प, और मेरे लिए सबसे आसान (यह वही है जो मैं SpokenToday.info के लिए उपयोग कर रहा हूं ):
गूगल फ़ीड एपीआई JQuery का उपयोग किए बिना और केवल 2 चरणों के साथ:
पुस्तकालय आयात करें:
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">google.load("feeds", "1");</script>
फ़ीड / प्रलेखन खोजें (लोड करें ):
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);
});
डेटा को पार्स करने के लिए, प्रतिक्रिया प्रारूप के बारे में दस्तावेज़ीकरण देखें ।
document.getElementById('image').style.backgroundImage = "url('" + src + "')";
यदि आप अपने आरएसएस विजेट के लिए Google फ़ीड एपीआई के लिए एक सरल और मुफ्त विकल्प की तलाश कर रहे हैं तो rss2json.com इसके लिए एक उपयुक्त समाधान हो सकता है।
आप यह देखने का प्रयास कर सकते हैं कि यह नीचे दिए गए एपीआई प्रलेखन से एक नमूना कोड पर कैसे काम करता है :
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 में) पढ़ने के बाद दुर्भाग्य से अधिकांश जेएस आरएसएस पढ़ने के कार्यान्वयन अब काम नहीं करते हैं। सबसे पहले Google API बंद हो गया है इसलिए यह अब एक विकल्प नहीं है और कॉर्स सुरक्षा नीति के कारण आप आमतौर पर 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 फ़ीड को पार्स करने के लिए होगा और जावास्क्रिप्ट को अंतिम-गंतव्य फ़ीड तक पहुंचने की कोशिश करने के बजाय मेरे PHP तक पहुंचने की अनुमति देगा।
यदि आप एक सादे जावास्क्रिप्ट एपीआई का उपयोग करना चाहते हैं, तो 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'))
आप jquery-rss या वेनिला RSS का उपयोग कर सकते हैं , जो अच्छा टेम्पलेटिंग के साथ आता है और उपयोग करने के लिए सुपर आसान है:
// Example for jquery.rss
$("#your-div").rss("https://stackoverflow.com/feeds/question/10943544", {
limit: 3,
layoutTemplate: '<ul class="inline">{entries}</ul>',
entryTemplate: '<li><a href="{url}">[{author}@{date}] {title}</a><br/>{shortBodyPlain}</li>'
})
// Example for Vanilla RSS
const RSS = require('vanilla-rss');
const rss = new RSS(
document.querySelector("#your-div"),
"https://stackoverflow.com/feeds/question/10943544",
{
// options go here
}
);
rss.render().then(() => {
console.log('Everything is loaded and rendered');
});
काम के उदाहरण के लिए http://jsfiddle.net/sdepold/ozq2dn9e/1/ देखें ।
अब इसके लिए एक अच्छा समाधान खोजने की कोशिश कर रहा हूं, मैं फीडबैक jQuery RSS / ATOM फीड प्लगिन पर हुआ जो कि jQuery फ़ीड एपीआई के माध्यम से RSS और एटम फ़ीड को पार्स और प्रदर्शित करने का एक बड़ा काम करता है । मूल XML-आधारित RSS फ़ीड के लिए, मैंने पाया है कि यह एक आकर्षण की तरह काम करता है और इसके लिए कोई सर्वर-साइड स्क्रिप्ट या अन्य स्थानीय रूप से चलने के लिए अन्य CORS वर्कअराउंड की आवश्यकता नहीं है।
मैं कई भ्रामक लेखों और उत्तरों से इतना उद्वेलित था कि मैंने अपना स्वयं का आरएसएस रीडर लिखा: https://gouessej.wordpress.com/2020/06/28/comment-creer-un-lecteur-rss-en-avascript-how- करने के लिए बना एक आरएसएस रीडर में जावास्क्रिप्ट /
आप AJAX अनुरोधों का उपयोग RSS फ़ाइलों को लाने के लिए कर सकते हैं, लेकिन यह तभी काम करेगा जब आप एक CORS प्रॉक्सी का उपयोग करेंगे। मैं आपको अधिक मजबूत समाधान देने के लिए अपने स्वयं के कोर प्रॉक्सी लिखने की कोशिश करूंगा। इस बीच, यह काम करता है, मैंने इसे डेबियन लिनक्स के तहत अपने सर्वर पर तैनात किया।
मेरा समाधान JQuery का उपयोग नहीं करता है, मैं केवल सादे जावास्क्रिप्ट मानक API का उपयोग करता हूं जिसमें कोई तृतीय पक्ष लाइब्रेरी नहीं है और यह Microsoft इंटरनेट एक्सप्लोरर 11 के साथ भी काम करना चाहिए।