wx原生小程序代码中为什么经常出现_this
小程序里大量异步 API,早年写法全是普通 function 回调: wx.request、wx.showModal、wx.chooseImage、Promise 的 .then(function(){}) 等。
onLoad() {wx.request({url: xxx,success: function(res) {// 这里 this 不再是页面实例!this.set…
2026/7/11 6:28:43