代码如下
onLoad() {
console.log("onLoad in index")
uni.getLocation({
type:"gcj02",
success: res => {
console.log("getlocation success");
this.latitude = res.latitude; //返回的经纬度赋值给data数据
this.longitude= res.longitude;
this.mylatitude= res.latitude; //记录经纬度值
this.mylongitude= res.longitude;
//赋值给covers
for (let item in this.covers) {
this.covers[item].latitude = res.latitude;
this.covers[item].longitude= res.longitude;
console.log(this.covers[item].longitude,res.longitude)
}
},
fail() {
console.log("定位失败!")
}
})
},
app中定位昨天还好好的能正常定位,今天突然就不行了。
key设置好的
直接进入fail了,打印了日志定位失败!
然后在浏览器上也定位失败,并且连fail中的console.log("定位失败!")都没有打印出来
有个警告
DevTools failed to load source map: Could not load content for http://localhost:8080/static/js/sockjs.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
2***@qq.com (作者)
你好,应该不是网络问题,因为chooseLocation可以正常用。新建的模板还是不能获取位置,请问你说的资源问题可以详细说下吗
2022-08-16 11:32
DCloud_UNI_WZF
回复 2***@qq.com: 不是提示404了吗?
2022-08-16 11:41
DCloud_UNI_WZF
回复 2***@qq.com: 可提供下可复现demo帮助解决该问题
2022-08-16 11:42
2***@qq.com (作者)
大神,我上传了demo,麻烦帮我看一下嘛
2022-08-22 17:07