আপনি যদি সরল জাভাস্ক্রিপ্টে এটি করতে চান তবে আপনি কোনও ফাংশনটি এর মতো সংজ্ঞায়িত করতে পারেন:
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
এটি একটি অবজেক্ট, সুতরাং আপনি এর বিশদটি বিশ্লেষণ না করে অ্যাক্সেস করতে পারবেন।