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 中国語 Web サイトの他の関連記事を参照してください。