JavaScriptを学習しようとしていますが、「Uncaught SyntaxError:JSON.parseのJSONの予期しないトークンu」というエラーが発生し続けます。Uncaught SyntaxError:JSON.parseの位置0のJSONの予期しないトークンu
var ourRequest = new XMLHttpRequest();
ourRequest.open('GET', 'https://learnwebcode.github.io/json-example/animals-1.json');
ourRequest.onload = function(){
var ourData = JSON.parse(ourRequest.resoponseText);
console.log(ourData[0]);
};
ourRequest.send();
あなたは誤字があるようですが、私はそれが 'responseText'であるべきだと思います。 –