百度地图IP获取定位,接口已经返回成功,但是却报了跨域错误
调用百度地图ip获取定位接口,已经成功返回数据,但是报了跨域错误,导致回调方法无法执行。求教
Failed to load https://api.map.baidu.com/loc...: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://127.0.0.1:8087' is therefore not allowed access.
this.$http.get(`https://api.map.baidu.com/location/ip?ak=${AK}&coor=bd09l`).then(res => {
console.log(res);
this.x = res.location;
this.y = res.latitude;
let mk = new BMap.Marker(res.point);
map.addOverlay(mk);
map.panTo(res.point);
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)