接受后台参数后地图无法显示?
我接收到了后台传回的数据(地图中心点),但是地图始终无法显示
.js与.wxml:
Page({
data: {
longitude: '',
latitude: '',
markers: []
},
onLoad() {
wx.request({
url: 'http://localhost:8080/map',
method: 'post',
header: { 'Content-Type': 'application/x-www-form-urlencoded;charset:utf-8' },
success: res => {
res = res.data
this.setData({
latitude: res.data[0].latitude,
longitude: res.data[0].longitude
})
console.log(this.data.latitude)
},
fail: function () {
}
})
}
})
<view>
<map longitude="{{ longitude }}"
latitude="{{ lantitude }}"
scale="16"
min-scale="15"
max-scale="19"
show-location />
</view>
1 回复
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)