data:{
showPosition: false,
latitude: 30.674801,
longitude: 104.139919,
markers: [{
id: 1,
latitude: 30.674801,
longitude: 104.139919,
name: '成都'
}],
}
wxml的代码
<view class="page-section page-section-gap">
<map
id="myMap"
style="width:400px;height: 400px;"
latitude="30.674801"
longitude="104.139919"
circles=""
markers="{{markers}}" show-location>
</map>
</view>
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
经过多次调试,发现原来是模板的问题,人家的这个项目采用了模板,所以模板上没有引入变量的话,在具体页面上,定义的变量也就无法被读取到。