这个列表是在那儿呀 我看文档里没有些最低支持的版本
getPhoneNumber按钮不能唤起授权弹窗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没有返回信息。 [图片]
2018-06-06通过 scanType 可以看出是两种类型的二维码。 一种是 QR_CODE,一种是 WX_CODE wx_code这种类型的二维码携带的参数需要 decodeURIComponent()处理之后 才能和 qr_code 一致
wx.scancode()返回结果客户端与开发者工具不一致扫同一个小程序码,返回的scanType开发者工具与客户端不一致 [图片] [图片]
2018-05-15