var ourRequeest = new XMLHttpRequest();
ourRequeest.open('GET' 'https://learnwebcode.github.io/json-example/animals-1.json')
ourRequeest.onload = function()
{
console.log(ourRequest.responseText);
};
ourRequest.send();
我一直在控制台中收到此消息。
Uncaught Syntax Error : missing ) after argument list
。问题:有没有做对的事情?
最佳答案
你有几个问题。,
中缺少.open();
,并且变量中有两个e
的ourRequeest
在;
的末尾也缺少.open();
var ourRequeest = new XMLHttpRequest();
ourRequeest.open('GET','https://learnwebcode.github.io/json-example/animals-1.json');
ourRequeest.onload = function(){
console.log(ourRequeest.responseText);
};
ourRequeest.send();
如果您有任何疑问,请随时提出,我们会尽快与您联系。
我希望这有帮助。编码愉快!
关于javascript - 如何在控制台页面中查看URI的内容?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41077036/