收藏
回答

getPhoneNumber按钮不能唤起授权弹窗

框架类型 问题类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 Bug getPhoneNumber 客户端 6.6.6 2.0.0

APPID:wx41ad20987ed5159c


getPhoneNumber


<button class='btn' open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">登录</button>


if (e.detail.errMsg === 'getPhoneNumber:ok') {

     wx.request({    

        url: app.globalData.globalUrl + "users/register_bind",

        data: {

            p: 'wx',

            openid: openid,

            encrypt: e.detail.encryptedData,

            iv: e.detail.iv,

        },

        method: 'POST',

        header: {

            'Accept': 'application/json' // 默认值

        },

        success: function (res) {

            console.log(res.data) 

        }

    })

} else if (e.detail.errMsg === 'getPhoneNumber:fail user deny') {

    wx.showModal({

        title: '提示',

        content: '您拒绝了授权,将无法正常体验。',

        showCancel: false,

        confirmText: '重新授权',

        success: function (res) {

            if (res.confirm) {

            console.log('用户点击确定')

            }

        }

    })

} else if (e.detail.errMsg === 'getPhoneNumber:fail 用户未绑定手机,请先在微信客户端进行绑定后重试') {

    wx.showModal({

        title: '提示',

        content: '您未绑定手机,请先在微信客户端进行绑定后重试。绑定方法:设置》账号与安全》手机号',

        showCancel: false,

        confirmText: '重新授权',

        success: function (res) {

            if (res.confirm) {

                console.log('用户点击确定')

            }

        }

    })

}else{

    wx.showModal({

        title: '提示',

        content: '网络繁忙,请稍后再试',

        showCancel: false,

        confirmText: '我知道了',

        success: function (res) {

            if (res.confirm) {

                console.log('用户点击确定')

            }

        }

    })

}


部分机型不能唤起弹窗,iPhone6不能唤起弹窗,点击按钮华为也有几款无反应。


通过e.detail.errMsg 判断提示也不能触发提示框,说明e.detail.errMsg没有返回信息。



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

2 个回答

登录 后发表内容