收藏
回答

苹果xmax授权登录不弹窗

框架类型 问题类型 操作系统 操作系统版本 手机型号 微信版本
小程序 Bug iOS iOS 12 苹果xmax 7.0.4

- 当前 Bug 的表现(可附上截图)


- 预期表现


- 复现路径


- 提供一个最简复现 Demo

   bindGetUserInfo: function (e) {

     let userInfo = wx.getStorageSync('userInfo');

     let token = wx.getStorageSync('token');

     let userMobile = wx.getStorageSync('userMobile');

     if (userInfo && token && userMobile != "" && userMobile!=null) {

       // wx.redirectTo({

       //   url: "/pages/index/index"

       // });

     }

     if (e.detail.userInfo) {

       //用户按了允许授权按钮

       user.loginByWeixin(e.detail).then(res => {

         this.setData({

           userInfo: res.data.userInfo

         });

         app.globalData.userInfo = res.data.userInfo;

         app.globalData.token = res.data.token;

         app.globalData.userMobile = res.data.userMobile;

         if (res.data.userMobile){

           wx.redirectTo({

             url: "/pages/index/index"

           });

         }else{

           wx.redirectTo({

             url: "/pages/accounts/accounts"

           });

         }

       }).catch((err) => {

         console.log(err)

       });

     } else {

       //用户按了拒绝按钮

       wx.showModal({

         title: '警告通知',

         content: '您点击了拒绝授权,将无法正常显示个人信息,点击确定重新获取授权。',

         success: function (res) {

           if (res.confirm) {

             wx.openSetting({

               success: (res) => {

                 if (res.authSetting["scope.userInfo"]) {////如果用户重新同意了授权登录

                   user.loginByWeixin(e.detail).then(res => {

                     this.setData({

                       userInfo: res.data.userInfo

                     });

                     app.globalData.userInfo = res.data.userInfo;

                     app.globalData.token = res.data.token;

                   }).catch((err) => {

                     console.log(err)

                   });

                 }

               }

             })

           }

         }

       });

     }

   }



loginByWeixin方法实现

/**

* 调用微信登录

*/

function loginByWeixin(userInfo) {


 let code = null;

 return new Promise(function (resolve, reject) {

   return util.login().then((res) => {

     code = res.code;

     return userInfo;

   }).then((userInfo) => {

     //登录远程服务器

     util.request(api.AuthLoginByWeixin, { code: code, userInfo: userInfo }, 'POST', 'application/json').then(res => {

       if (res.errno === 0) {

         //存储用户信息

         wx.setStorageSync('userInfo', res.data.userInfo);

         wx.setStorageSync('token', res.data.token);

         wx.setStorageSync('userMobile', res.data.userMobile);

         resolve(res);

       } else {

         util.showErrorToast(res.errmsg)

         reject(res);

       }

     }).catch((err) => {

       reject(err);

     });

   }).catch((err) => {

     reject(err);

   })

 });

}




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

2 个回答

  • 2019-07-04

    你好,请问解决了吗?我们也出现这种问题了

    2019-07-04
    有用
    回复
  • 是小白啊
    是小白啊
    2019-04-23

    麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

    2019-04-23
    有用
    回复 4
登录 后发表内容