uniapp 使用腾讯地图 H5端跨域解决方法
问题项目中使用腾讯地图sdk h5端出现跨域问题解决方法使用 jsonp 解决跨域1.先安装 vue-jsonpnpm i --save vue-jsonp2.再 main.js 中使用import {VueJsonp} from 'vue-jsonp'Vue.use(VueJsonp)3.在页面中使用onReady() {uni.getLocation({success: res => {
·
问题
项目中使用腾讯地图sdk h5端出现跨域问题
解决方法
使用 jsonp 解决跨域
1.先安装 vue-jsonp
npm i --save vue-jsonp
2.再 main.js 中使用
import {VueJsonp} from 'vue-jsonp'
Vue.use(VueJsonp)
3.在页面中使用
onReady() {
uni.getLocation({
success: res => {
this.latitude = res.latitude
this.longitude = res.longitude
this.getUserLocation();
}
});
},
methods:{
getUserLocation() {
let vm = this;
let locationObj = vm.latitude + ',' + vm.longitude;
let url = 'https://apis.map.qq.com/ws/geocoder/v1?coord_type=5&get_poi=1&output=jsonp&poi_options=page_size=1;page_index=1';
this.$jsonp(url, {
key: '腾讯地图key',
location: locationObj
})
.then(res => {
console.log(res)
})
.catch(err => {
console.log(err);
});
},
}
更多推荐
已为社区贡献1条内容
所有评论(0)