问题

项目中使用腾讯地图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);
			});

		},
}

Logo

前往低代码交流专区

更多推荐