经过查阅资料以后,得知是因为success返回的是闭包 所以为了解决问题,我们在其中加入一行语句 const that = this; 正确写法: const that = this wx.getLocation({ type: 'wgs84', success (res) { const latitude = res.latitude const longitude = res.longitude that.setData({jd1:latitude}) that.setData({jd2:longitude}) console.log(that.data.jd1) console.log(that.data.jd2) } }) 希望为以后遇到这个问题的人解答
给data里的变量赋值,但是报错?[图片][图片]
2023-02-23???
微信开发者工具开发小游戏时一直卡在初始化小游戏容器的部分,该怎么办?[图片]
2022-02-27