收藏
回答

为什么这里需要加上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')为什么不行?

回答关注问题邀请回答
收藏

1 个回答

  • 对影行觞
    对影行觞
    2017-05-25

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

    2017-05-25
    有用
    回复
登录 后发表内容