gpt4 book ai didi

javascript - HTML5 地理位置地址表单填充程序未捕获语法错误 : Unexpected token <

转载 作者:行者123 更新时间:2023-11-28 06:34:13 25 4
gpt4 key购买 nike

总的来说,我是编码新手。

我不断收到

"Uncaught SyntaxError: Unexpected token <" error and I have no idea what's wrong.

xhr.open("GET", url);
xhr.onload = function() {

//if we make a successful request and it returns an address
if(this.status==200 && JSON.parse(xhr.responseText).contents.results.length > 0){
//get formatted address from https://developers.google.com/maps/documentation/geocoding/#ReverseGeocoding
var result = JSON.parse(xhr.responseText).contents.results[0].formatted_address;
putInDom(result);
} else {
//send some general error
info.innerHTML = "Could not find your location.";
}

}

这是我获取 zip 文件的地方。我感谢所有的帮助。谢谢。 http://techslides.com/html5-geolocation-address-form-filler

最佳答案

看起来您的响应是 HTML,而不是 JSON。因此JSON.parse正在抛出 SyntaxError关于< token 。

关于javascript - HTML5 地理位置地址表单填充程序未捕获语法错误 : Unexpected token <,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34430165/

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