为什么这里需要加上this?
this.mapCtx = wx.createMapContext(‘myMap’)
this.mapCtx.getCenterLocation({
success: function (res) {
console.log(res.longitude)
console.log(res.latitude)
}
})
直接 var mapCtx = wx.createMapContext(‘myMap’)为什么不行?