मैं आरएसएस फ़ीड को पार्स करने के लिए jQuery का उपयोग करना चाहता हूं। क्या यह बॉक्स से बाहर बेस jQuery लाइब्रेरी के साथ किया जा सकता है या मुझे एक प्लगइन का उपयोग करने की आवश्यकता होगी?
मैं आरएसएस फ़ीड को पार्स करने के लिए jQuery का उपयोग करना चाहता हूं। क्या यह बॉक्स से बाहर बेस jQuery लाइब्रेरी के साथ किया जा सकता है या मुझे एक प्लगइन का उपयोग करने की आवश्यकता होगी?
जवाबों:
चेतावनी
Google फ़ीड API आधिकारिक तौर पर हटा दिया गया है और अब और काम नहीं करता है !
पूरे प्लगइन की आवश्यकता नहीं है। यह आपके RSS को कॉलबैक फ़ंक्शन के JSON ऑब्जेक्ट के रूप में लौटाएगा:
function parseRSS(url, callback) {
$.ajax({
url: document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent(url),
dataType: 'json',
success: function(data) {
callback(data.responseData.feed);
}
});
}
JFeed का प्रयोग करें - jQuery RSS / Atom plugin। डॉक्स के अनुसार, यह उतना ही सरल है:
jQuery.getFeed({
url: 'rss.xml',
success: function(feed) {
alert(feed.title);
}
});
हम में से जो लोग देर से चर्चा में आ रहे हैं, उनके लिए 1.5 jQuery के साथ शुरू में अंतर्निहित xml पार्सिंग क्षमताएं हैं, जो प्लग इन या 3 पार्टी सेवाओं के बिना ऐसा करना बहुत आसान बनाता है। इसमें पार्सएक्सएमएल फ़ंक्शन है, और $ .get फ़ंक्शन का उपयोग करते समय एक्सएमएल ऑटो-पार्स भी होगा। उदाहरण के लिए:
$.get(rssurl, function(data) {
var $xml = $(data);
$xml.find("item").each(function() {
var $this = $(this),
item = {
title: $this.find("title").text(),
link: $this.find("link").text(),
description: $this.find("description").text(),
pubDate: $this.find("pubDate").text(),
author: $this.find("author").text()
}
//Do something with item here...
});
});
$this.find("link").text()
हमेशा खाली स्ट्रिंग '' क्यों लौटाता है?
jFeed IE में काम नहीं करता है।
ZRSSFeed का उपयोग करें । यह 5 मिनट में काम कर रहा था
अपडेट (15 अक्टूबर, 2019)
मैंने jquery-rss से मुख्य तर्क को एक नई लाइब्रेरी में निकाला, जिसे वेनिला RSS कहा जाता है, जो कि API का उपयोग कर रही है और बिना किसी अतिरिक्त निर्भरता के काम कर सकती है:
const RSS = require('vanilla-rss');
const rss = new RSS(
document.querySelector("#your-div"),
"http://www.recruiter.com/feed/career.xml",
{
// options go here
}
);
rss.render().then(() => {
console.log('Everything is loaded and rendered');
});
मूल
पद:
आप jquery-rss का भी उपयोग कर सकते हैं , जो अच्छा टेम्प्लेटिंग के साथ आता है और उपयोग करने के लिए सुपर आसान है:
$("#your-div").rss("http://www.recruiter.com/feed/career.xml", {
limit: 3,
layoutTemplate: '<ul class="inline">{entries}</ul>',
entryTemplate: '<li><a href="{url}">[{author}@{date}] {title}</a><br/>{shortBodyPlain}</li>'
})
पैदावार (सितम्बर 18, 2013 के अनुसार):
<div id="your-div">
<ul class="inline">
<entries></entries>
</ul>
<ul class="inline">
<li><a href="http://www.recruiter.com/i/when-to-go-over-a-recruiter%e2%80%99s-head/">[@Tue, 10 Sep 2013 22:23:51 -0700] When to Go Over a Recruiter's Head</a><br>Job seekers tend to have a certain "fear" of recruiters and hiring managers, and I mean fear in the reverence and respect ...</li>
<li><a href="http://www.recruiter.com/i/the-perfect-job/">[@Tue, 10 Sep 2013 14:52:40 -0700] The Perfect Job</a><br>Having long ago dealt with the "perfect resume" namely God's, in a previous article of mine, it makes sense to consider the ...</li>
<li><a href="http://www.recruiter.com/i/unemployment-benefits-applications-remain-near-5-year-low-decline-again/">[@Mon, 09 Sep 2013 12:49:17 -0700] Unemployment Benefits Applications Remain Near 5-Year Low, Decline Again</a><br>As reported by the U.S. Department of Labor, the number of workers seeking unemployment benefits continued to sit near ...</li>
</ul>
</div>
कार्यशील उदाहरण के लिए http://jsfiddle.net/sdepold/ozq2dn9e/1/ देखें ।
moment.js
function getFeed(sender, uri) {
jQuery.getFeed({
url: 'proxy.php?url=' + uri,
success: function(feed) {
jQuery(sender).append('<h2>'
+ '<a href="'
+ feed.link
+ '">'
+ feed.title
+ '</a>'
+ '</h2>');
var html = '';
for(var i = 0; i < feed.items.length && i < 5; i++) {
var item = feed.items[i];
html += '<h3>'
+ '<a href="'
+ item.link
+ '">'
+ item.title
+ '</a>'
+ '</h3>';
html += '<div class="updated">'
+ item.updated
+ '</div>';
html += '<div>'
+ item.description
+ '</div>';
}
jQuery(sender).append(html);
}
});
}
<div id="getanewbrowser">
<script type="text/javascript">
getFeed($("#getanewbrowser"), 'http://feeds.feedburner.com/getanewbrowser')
</script>
</div>
जब तक आपका RSS डेटा निजी न हो, Google AJAX फ़ीड API का उपयोग करें। यह निश्चित रूप से तेज़ है।
UPDATE [ 4/25/2016 ] अब GitHub.jQSSS पर होस्ट किए गए अधिक विकल्पों और क्षमताओं के साथ बेहतर लिखित और पूरी तरह से समर्थित संस्करण
मैंने नाथन स्ट्रट्ज़ द्वारा चयनित उत्तर को देखा , हालांकि, jQuery प्लगइन पेज लिंक अभी भी नीचे है और उस साइट के लिए होम पेज लोड नहीं हुआ। मैंने कुछ अन्य समाधानों की कोशिश की और उनमें से अधिकांश को न केवल आउट-डेटेड पाया, बल्कि आसान भी ! इस प्रकार मैंने अपनी टोपी को वहीं फेंक दिया और अपना खुद का प्लगइन बना लिया, और यहाँ मृत लिंक के साथ, यह एक जवाब प्रस्तुत करने के लिए एक शानदार जगह की तरह लगता है। यदि आप 2012 में (जल्द ही बी 2013 के लिए) इस उत्तर की तलाश कर रहे हैं, तो आप यहाँ दिए गए लिंक और पुरानी सलाह की निराशा को देख सकते हैं। नीचे मेरे आधुनिक प्लगइन उदाहरण के लिए लिंक के साथ-साथ प्लगइन का कोड भी है! बस एक जेएस फाइल में कोड कॉपी करें और इसे किसी अन्य प्लगइन की तरह अपने हेडर में लिंक करें। का उपयोग ईज़ी है!
प्लगइन कोड
2/9/2015 -console
आदेश भेजने से पहले जांच करने के लिए लंबे समय तक अद्यतन किया गया! पुराने IE मुद्दों के साथ मदद करनी चाहिए।
(function($) {
if (!$.jQRSS) {
$.extend({
jQRSS: function(rss, options, func) {
if (arguments.length <= 0) return false;
var str, obj, fun;
for (i=0;i<arguments.length;i++) {
switch(typeof arguments[i]) {
case "string":
str = arguments[i];
break;
case "object":
obj = arguments[i];
break;
case "function":
fun = arguments[i];
break;
}
}
if (str == null || str == "") {
if (!obj['rss']) return false;
if (obj.rss == null || obj.rss == "") return false;
}
var o = $.extend(true, {}, $.jQRSS.defaults);
if (typeof obj == "object") {
if ($.jQRSS.methods.getObjLength(obj) > 0) {
o = $.extend(true, o, obj);
}
}
if (str != "" && !o.rss) o.rss = str;
o.rss = escape(o.rss);
var gURL = $.jQRSS.props.gURL
+ $.jQRSS.props.type
+ "?v=" + $.jQRSS.props.ver
+ "&q=" + o.rss
+ "&callback=" + $.jQRSS.props.callback;
var ajaxData = {
num: o.count,
output: o.output,
};
if (o.historical) ajaxData.scoring = $.jQRSS.props.scoring;
if (o.userip != null) ajaxData.scoring = o.userip;
$.ajax({
url: gURL,
beforeSend: function (jqXHR, settings) { if (window['console']) { console.log(new Array(30).join('-'), "REQUESTING RSS XML", new Array(30).join('-')); console.log({ ajaxData: ajaxData, ajaxRequest: settings.url, jqXHR: jqXHR, settings: settings, options: o }); console.log(new Array(80).join('-')); } },
dataType: o.output != "xml" ? "json" : "xml",
data: ajaxData,
type: "GET",
xhrFields: { withCredentials: true },
error: function (jqXHR, textStatus, errorThrown) { return new Array("ERROR", { jqXHR: jqXHR, textStatus: textStatus, errorThrown: errorThrown } ); },
success: function (data, textStatus, jqXHR) {
var f = data['responseData'] ? data.responseData['feed'] ? data.responseData.feed : null : null,
e = data['responseData'] ? data.responseData['feed'] ? data.responseData.feed['entries'] ? data.responseData.feed.entries : null : null : null
if (window['console']) {
console.log(new Array(30).join('-'), "SUCCESS", new Array(30).join('-'));
console.log({ data: data, textStatus: textStatus, jqXHR: jqXHR, feed: f, entries: e });
console.log(new Array(70).join('-'));
}
if (fun) {
return fun.call(this, data['responseData'] ? data.responseData['feed'] ? data.responseData.feed : data.responseData : null);
}
else {
return { data: data, textStatus: textStatus, jqXHR: jqXHR, feed: f, entries: e };
}
}
});
}
});
$.jQRSS.props = {
callback: "?",
gURL: "http://ajax.googleapis.com/ajax/services/feed/",
scoring: "h",
type: "load",
ver: "1.0"
};
$.jQRSS.methods = {
getObjLength: function(obj) {
if (typeof obj != "object") return -1;
var objLength = 0;
$.each(obj, function(k, v) { objLength++; })
return objLength;
}
};
$.jQRSS.defaults = {
count: "10", // max 100, -1 defaults 100
historical: false,
output: "json", // json, json_xml, xml
rss: null, // url OR search term like "Official Google Blog"
userip: null
};
}
})(jQuery);
उपयोग
// Param ORDER does not matter, however, you must have a link and a callback function
// link can be passed as "rss" in options
// $.jQRSS(linkORsearchString, callbackFunction, { options })
$.jQRSS('someUrl.xml', function(feed) { /* do work */ })
$.jQRSS(function(feed) { /* do work */ }, 'someUrl.xml', { count: 20 })
$.jQRSS('someUrl.xml', function(feed) { /* do work */ }, { count: 20 })
$.jQRSS({ count: 20, rss: 'someLink.xml' }, function(feed) { /* do work */ })
$ .jQRSS ('खोज शब्द यहां एक लिंक के बजाय', फ़ंक्शन (फ़ीड) {/ * काम करो * /})
// TODO: नीड फ़िक्सिंग
विकल्प
{
count: // default is 10; max is 100. Setting to -1 defaults to 100
historical: // default is false; a value of true instructs the system to return any additional historical entries that it might have in its cache.
output: // default is "json"; "json_xml" retuns json object with xmlString / "xml" returns the XML as String
rss: // simply an alternate place to put news feed link or search terms
userip: // as this uses Google API, I'll simply insert there comment on this:
/* Reference: https://developers.google.com/feed/v1/jsondevguide
This argument supplies the IP address of the end-user on
whose behalf the request is being made. Google is less
likely to mistake requests for abuse when they include
userip. In choosing to utilize this parameter, please be
sure that you're in compliance with any local laws,
including any laws relating to disclosure of personal
information being sent.
*/
}
(function(url, callback) {
jQuery.ajax({
url: document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent(url),
dataType: 'json',
success: function(data) {
callback(data.responseData.feed);
}
});
})('http://news.hitb.org/rss.xml', function(feed){ // Change to desired URL
var entries = feed.entries, feedList = '';
for (var i = 0; i < entries.length; i++) {
feedList +='<li><a href="' + entries[i].link + '">' + entries[i].title + '</a></li>';
}
jQuery('.feed > ul').append(feedList);
});
<div class="feed">
<h4>Hacker News</h4>
<ul></ul>
</div>
मैं @Andrew से सहमत हूं , Google का उपयोग करना एक ठोस, पुन: प्रयोज्य तरीका है जो आपको भारी लाभ के साथ प्रदान करता है जो आपको XML के बजाय JSON वापस मिलता है। Google को प्रॉक्सी के रूप में उपयोग करने का एक अतिरिक्त लाभ यह है कि ऐसी सेवाएँ जो आपके डेटा तक आपकी सीधी पहुँच को अवरुद्ध कर सकती हैं, Google को रोकने की संभावना नहीं है। यहाँ स्की रिपोर्ट और शर्तों डेटा का उपयोग करके एक उदाहरण दिया गया है। इसमें सभी सामान्य वास्तविक विश्व अनुप्रयोग हैं: 1) थर्ड पार्टी RSS / XML 2) JSONP 3) स्ट्रिंग्स और स्ट्रिंग को ऐरे से साफ करना जब आप डेटा को उस तरह से प्राप्त नहीं कर सकते जिस तरह से आप इसे चाहते हैं) 4 लोड करने के लिए तत्वों को जोड़ें डोम। आशा है कि यह कुछ लोगों को मदद करता है!
<!-- Load RSS Through Google as JSON using jQuery -->
<script type="text/javascript">
function displaySkiReport (feedResponse) {
// Get ski report content strings
var itemString = feedResponse.entries[0].content;
var publishedDate = feedResponse.entries[0].publishedDate;
// Clean up strings manually as needed
itemString = itemString.replace("Primary: N/A", "Early Season Conditions");
publishedDate = publishedDate.substring(0,17);
// Parse ski report data from string
var itemsArray = itemString.split("/");
//Build Unordered List
var html = '<h2>' + feedResponse.entries[0].title + '</h2>';
html += '<ul>';
html += '<li>Skiing Status: ' + itemsArray[0] + '</li>';
// Last 48 Hours
html += '<li>' + itemsArray[1] + '</li>';
// Snow condition
html += '<li>' + itemsArray[2] + '</li>';
// Base depth
html += '<li>' + itemsArray[3] + '</li>';
html += '<li>Ski Report Date: ' + publishedDate + '</li>';
html += '</ul>';
$('body').append(html);
}
function parseRSS(url, callback) {
$.ajax({
url: document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent(url),
dataType: 'json',
success: function(data) {
callback(data.responseData.feed);
}
});
}
$(document).ready(function() {
// Ski report
parseRSS("http://www.onthesnow.com/michigan/boyne-highlands/snow.rss", displaySkiReport);
});
</script>
jFeed कुछ अप्रचलित है, केवल jQuery के पुराने संस्करणों के साथ काम कर रहा है। इसे अपडेट किए हुए दो साल हो चुके हैं।
zRSSFeed शायद थोड़ा कम लचीला है, लेकिन इसका उपयोग करना आसान है, और यह jQuery के वर्तमान संस्करण (वर्तमान में 1.4) के साथ काम करता है। http://www.zazar.net/developers/zrssfeed/
यहाँ zRSSFeed डॉक्स से एक त्वरित उदाहरण दिया गया है:
<div id="test"><div>
<script type="text/javascript">
$(document).ready(function () {
$('#test').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews', {
limit: 5
});
});
</script>
मैं फ़ीड के लिए yql के साथ jquery का उपयोग कर रहा हूं। आप ट्विटर, आरएसएस, yql के साथ चर्चा पुनः प्राप्त कर सकते हैं। मैं http://tutorialzine.com/2010/02/feed-widget-jquery-css-yql/ से पढ़ता हूं । यह मेरे लिए बहुत उपयोगी है।
मैं आपको FeedEk का उपयोग करने की सलाह देता हूं । Google फ़ीड API के बाद आधिकारिक तौर पर हटाए गए अधिकांश प्लगइन्स काम नहीं करते हैं। लेकिन FeedEk अभी भी काम कर रहा है। इसे इस्तेमाल करना बहुत आसान है और इसमें कस्टमाइज़ करने के कई विकल्प हैं।
$('#divRss').FeedEk({
FeedUrl:'http://jquery-plugins.net/rss'
});
विकल्पों के साथ
$('#divRss').FeedEk({
FeedUrl:'http://jquery-plugins.net/rss',
MaxCount : 5,
ShowDesc : true,
ShowPubDate:true,
DescCharacterLimit:100,
TitleLinkTarget:'_blank',
DateFormat: 'MM/DD/YYYY',
DateFormatLang:'en'
});
<script type="text/javascript" src="./js/jquery/jquery.js"></script>
<script type="text/javascript" src="./js/jFeed/build/dist/jquery.jfeed.pack.js"></script>
<script type="text/javascript">
function loadFeed(){
$.getFeed({
url: 'url=http://sports.espn.go.com/espn/rss/news/',
success: function(feed) {
//Title
$('#result').append('<h2><a href="' + feed.link + '">' + feed.title + '</a>' + '</h2>');
//Unordered List
var html = '<ul>';
$(feed.items).each(function(){
var $item = $(this);
//trace( $item.attr("link") );
html += '<li>' +
'<h3><a href ="' + $item.attr("link") + '" target="_new">' +
$item.attr("title") + '</a></h3> ' +
'<p>' + $item.attr("description") + '</p>' +
// '<p>' + $item.attr("c:date") + '</p>' +
'</li>';
});
html += '</ul>';
$('#result').append(html);
}
});
}
</script>
Google ajax api का उपयोग करें , जो कि Google और आपके इच्छित किसी भी आउटपुट स्वरूप द्वारा कैश्ड है।
कोड नमूना; http://code.google.com/apis/ajax/playground/#load_feed
<script src="http://www.google.com/jsapi?key=AIzaSyA5m1Nc8ws2BbmPRwKu5gFradvD_hgq6G0" type="text/javascript"></script>
<script type="text/javascript">
/*
* How to load a feed via the Feeds API.
*/
google.load("feeds", "1");
// Our callback function, for when a feed is loaded.
function feedLoaded(result) {
if (!result.error) {
// Grab the container we will put the results into
var container = document.getElementById("content");
container.innerHTML = '';
// Loop through the feeds, putting the titles onto the page.
// Check out the result object for a list of properties returned in each entry.
// http://code.google.com/apis/ajaxfeeds/documentation/reference.html#JSON
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);
}
}
}
function OnLoad() {
// Create a feed instance that will grab Digg's feed.
var feed = new google.feeds.Feed("http://www.digg.com/rss/index.xml");
// Calling load sends the request off. It requires a callback function.
feed.load(feedLoaded);
}
google.setOnLoadCallback(OnLoad);
</script>
zRSSfeed को jQuery पर बनाया गया है और सरल विषय भयानक है।
कोशिश करो।
JQuery-rss प्रोजेक्ट काफी हल्का है और यह किसी विशेष स्टाइलिंग को लागू नहीं करता है।
वाक्यविन्यास जितना सरल हो सकता है
$("#rss-feeds").rss("http://www.recruiter.com/feed/career.xml")
Http://jsfiddle.net/jhfrench/AFHfn/ पर एक कार्यशील उदाहरण देखें
jQuery फ़ीड एक अच्छा विकल्प है, इसमें एक अंतर्निहित टेम्प्लेटिंग सिस्टम है और Google फीड एपीआई का उपयोग करता है, इसलिए इसमें क्रॉस-डोमेन समर्थन है।
Superfeedr में एक jquery प्लगइन है जो बहुत अच्छी तरह से करता है। आपके पास कोई क्रॉस ओरिजिन पॉलिसी जारी नहीं होगी और अपडेट को रीयल टाइम में प्रचारित किया जाएगा।
jFeed आसान है और आपके पास परीक्षण करने के लिए एक उदाहरण है । लेकिन यदि आप किसी अन्य सर्वर से फ़ीड पार्स कर रहे हैं, तो आपको फ़ीड सर्वर पर क्रॉस ओरिजिनल रिसोर्स शेयरिंग (कोर) की अनुमति देने की आवश्यकता होगी । आपको ब्राउज़र समर्थन की भी जांच करनी होगी ।
मैंने नमूना अपलोड किया था, लेकिन फिर भी मुझे किसी भी संस्करण में IE से समर्थन नहीं मिला जब मैंने उदाहरण में url को http प्रोटोकॉल के माध्यम से example.com/feed.rss जैसे कुछ में बदल दिया। कॉर्स को IE 8 और इसके बाद के संस्करण के लिए समर्थित होना चाहिए, लेकिन jFeed उदाहरण ने फ़ीड को प्रस्तुत नहीं किया।
Google की API: https://developers.google.com/feed/v1/devguide का उपयोग करने के लिए आपकी सबसे अच्छी शर्त है
देखें:
https://github.com/jfhovinne/jFeed
http://en.wikipedia.org/wiki/Cross-origin_resource_sharing
http://en.wikipedia.org/wiki/Same_origin_policy
http://caniuse.com/cors