this.$jsonp("https://apis.map.qq.com/ws/district/v1/search", { key: "DKWBZ-FWYKV-WQ3PJ-U5ERZ-VQIVH-JVBG4", keyword: '上海', get_polygon: 2, output: "jsonp" }).then(res => { console.log(res, 'res'); })中output: "jsonp"什么意思
时间: 2023-04-01 17:01:38 浏览: 219
Vue 报错TypeError: this.$set is not a function 的解决方法
这个问题可以回答。output: "jsonp" 是指返回的数据格式为 JSONP 格式,而不是普通的 JSON 格式。JSONP 是一种跨域数据请求的方式,它通过动态创建 script 标签来实现跨域请求数据。
阅读全文