JSON-Daten von einer URL mithilfe von JavaScript abrufen
Dieser Artikel befasst sich mit dem Problem des Extrahierens von JSON-Daten aus einer bestimmten URL. Die bereitgestellte URL gibt JSON im folgenden Format zurück:
<code class="json">{ query: { count: 1, created: "2015-12-09T17:12:09Z", lang: "en-US", diagnostics: {}, ... } }</code>
Versuche, mit dem folgenden Code auf das JSON-Objekt zuzugreifen, waren erfolglos:
<code class="js">responseObj = readJsonFromUrl('http://query.yahooapis.com/v1/publ...'); var count = responseObj.query.count; console.log(count) // should be 1</code>
Lösung:
Um ein JavaScript-Objekt aus der JSON-Antwort der URL zu erhalten, kann man die .getJSON()-Funktion von jQuery verwenden:
<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>
Alternativ können Sie für eine reine JavaScript-Lösung die folgende Antwort in Betracht ziehen:
<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>
Das obige ist der detaillierte Inhalt vonWie extrahiere ich JSON-Daten aus einer URL mit JavaScript?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!