gpt4 book ai didi

javascript - 为什么我得到 : Uncaught SyntaxError: Unexpected token ILLEGAL here

转载 作者:搜寻专家 更新时间:2023-11-01 05:02:38 24 4
gpt4 key购买 nike

我有这个简单的脚本:

    ids="22656"
url = "http://api.stackoverflow.com/1.0/users/"+ids+"/timeline";
console.log( url );
xmlhttp = new XMLHttpRequest();
xmlhttp.open(“GET”, url ,true);
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {
console.log( xmlhttp.responseText );
}
xmlhttp.send( null );
};

但我不太明白为什么我得到:

Uncaught SyntaxError: Unexpected token ILLEGAL

有人可以阐明这一点吗?

最佳答案

GET 周围的引号不正确。您必须对字符串使用标准的单引号或双引号。

关于javascript - 为什么我得到 : Uncaught SyntaxError: Unexpected token ILLEGAL here,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5171489/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com