यदि आप इसे सादे जावास्क्रिप्ट में करना चाहते हैं, तो आप एक फ़ंक्शन को इस तरह परिभाषित कर सकते हैं:
var getJSON = function(url, callback) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.responseType = 'json';
xhr.onload = function() {
var status = xhr.status;
if (status === 200) {
callback(null, xhr.response);
} else {
callback(status, xhr.response);
}
};
xhr.send();
};
और इसे इस तरह से उपयोग करें:
getJSON('http://query.yahooapis.com/v1/public/yql?q=select%20%2a%20from%20yahoo.finance.quotes%20WHERE%20symbol%3D%27WRC%27&format=json&diagnostics=true&env=store://datatables.org/alltableswithkeys&callback',
function(err, data) {
if (err !== null) {
alert('Something went wrong: ' + err);
} else {
alert('Your query count: ' + data.query.count);
}
});
ध्यान दें कि data
एक वस्तु है, इसलिए आप इसे पार्स किए बिना इसकी विशेषताओं तक पहुंच सकते हैं।