为什么这里需要加上this?
发布于 5 年前 作者 xia01 8257 次浏览 来自 问答

this.mapCtx = wx.createMapContext(‘myMap’)
    this.mapCtx.getCenterLocation({
      success: function (res) {
        console.log(res.longitude)
        console.log(res.latitude)
      }
    })

直接 var mapCtx = wx.createMapContext(‘myMap’)为什么不行?

1 回复

赋给this是方便在别的地方调用该实例吧。

回到顶部