1 先下载 vue-jsonp
cnpm install vue-jsonp --save
下载 完之后再你的main.js 文件下导入
import { VueJsonp } from ‘vue-jsonp’
Vue.use(VueJsonp)
用腾讯位置服务,geocoder / location 获取位置归属地时报CROB
ip_sets(ip){
let key = '自己申请的key';
this.$jsonp('http://apis.map.qq.com/ws/location/v1/ip',{
ip:ip,key:key,
}).then(res=>{
console.log(res);
})
},
定义下输出格式
ip_sets(ip){
let key = '*******';
this.$jsonp('http://apis.map.qq.com/ws/location/v1/ip',{
ip:ip,
key:key,
output: "jsonp", //返回数据格式
}).then(res=>{
console.log(res);
})
},