收藏
回答

wx.getUserProfile({})放在定时器里为什么不执行?

 updateInfo() {

    let _this = this

    timer && clearTimeout(timer);

    timer = setTimeout(() => {

      wx.getUserProfile({

        desc: '用于完善用户资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写

        success: (res) => {

          console.log(res)

        }

      })

    }, 2000)

  },

getUserProfile为什么在加了定时器getUserProfile不执行

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

1 个回答

登录 后发表内容