updateInfo() {
let _this = this
timer && clearTimeout(timer);
timer = setTimeout(() => {
wx.getUserProfile({
desc: '用于完善用户资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
success: (res) => {
console.log(res)
}
})
}, 2000)
},
getUserProfile为什么在加了定时器getUserProfile不执行