收藏
回答

getphonenumber和wx.login调用顺序

最近在写获取微信手机号,调用getphonenumber时,文档说先调用wx.login,那么wx.login在什么地方调用合适?



getPhoneNumber: function(e) {
 
    let that = this;
 
    console.log("e.info", e);
 
    if (e.detail.errMsg == 'getPhoneNumber:ok') {
 
      that.data.phoneEncryptedData = e.detail.encryptedData;
      that.data.phoneIV = e.detail.iv;
 
      wx.login({
        success: function(res) {
          if (res.code) {
 

           // 通过code从自己服务器获取解密的手机号

            that.getPhoneNumberInfo(res.code);
 
          } else {
 
          }
        }
      });
 
    }
  },


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

1 个回答

  • 永强
    永强
    2018-08-28

    循环地狱

    2018-08-28
    有用 1
    回复
登录 后发表内容