gpt4 book ai didi

javascript - JSONP 返回 "Uncaught SyntaxError: Unexpected token :"

转载 作者:行者123 更新时间:2023-11-28 10:55:48 24 4
gpt4 key购买 nike

该问题与 json Uncaught SyntaxError: Unexpected token : 非常相似和 JSONP request returning error: "Uncaught SyntaxError: Unexpected token :"

我尝试调用电话来获取 Divvy 数据。我使用 JSONP 是因为我不想为这个简单的前端应用程序使用服务器。

$.ajax({
type: "GET",
url: 'http://divvybikes.com/stations/json',
dataType: "jsonp",
jsonp: "jsonp",
jsonpCallback: "handleData",
success: function(){
}
});

但是,Chrome 不断发出警报“Uncaught SyntaxError: Unexpected token :”

网址http://divvybikes.com/stations/json单独在浏览器中运行良好。另外,状态码始终为 200。

有人可以帮忙吗?

最佳答案

我猜您省略了一些代码。

首先,当 Chrome 给你这个错误时,你可以在控制台窗口中单击它,它会显示抛出错误的确切行。

此外,您的代码似乎比需要的更冗长。

$.ajax({
type: "GET",
dataType: "jsonp",
url: "http://divvybikes.com/stations/json",
success: function (data) {
console.log(data);
}
});

关于javascript - JSONP 返回 "Uncaught SyntaxError: Unexpected token :",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23556996/

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