使用 JavaScript 从 URL 检索 JSON 数据
本文解决了从特定 URL 提取 JSON 数据的问题。提供的 URL 返回以下格式的 JSON:
<code class="json">{ query: { count: 1, created: "2015-12-09T17:12:09Z", lang: "en-US", diagnostics: {}, ... } }</code>
尝试使用以下代码访问 JSON 对象失败:
<code class="js">responseObj = readJsonFromUrl('http://query.yahooapis.com/v1/publ...'); var count = responseObj.query.count; console.log(count) // should be 1</code>
解决方案:
要从 URL 的 JSON 响应中获取 JavaScript 对象,可以利用 jQuery 的 .getJSON() 函数:
<code class="js">$.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(data) { // JSON result in `data` variable });</code>
或者,对于纯 JavaScript 解决方案,请考虑以下答案:
<code class="js">// Create a new XMLHttpRequest object var xhr = new XMLHttpRequest(); // Open a GET request to the specified URL xhr.open('GET', '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', true); // Set the response type to JSON xhr.responseType = 'json'; // Send the request xhr.send(); // Handle the response xhr.onload = function() { if (xhr.status === 200) { // The request was successful var data = xhr.response; // Access the JSON data as needed console.log(data.query.count); } else { // The request failed console.log('Error: ' + xhr.status); } };</code>
以上是如何使用 JavaScript 从 URL 中提取 JSON 数据?的详细内容。更多信息请关注PHP中文网其他相关文章!