- 华为手机显示不支持人脸识别
wx.checkIsSupportSoterAuthentication({ success(res) { console.log(res) //此处没有返回-facial // res.supportMode = [] 不具备任何被SOTER支持的生物识别方式 // res.supportMode = ['fingerPrint'] 只支持指纹识别 // res.supportMode = ['fingerPrint', 'facial'] 支持指纹识别和人脸识别 if (res.supportMode.indexOf('facial') != -1) { wx.startSoterAuthentication({ requestAuthModes: ['facial'], challenge: '123456', authContent: '请进行人脸识别', success(res) { console.log(res) wx.checkIsSoterEnrolledInDevice({ checkAuthMode: 'facial', success(res) { console.log(res.isEnrolled) } }) } }) } } })
2021-08-06 - 微信开发者工具 远程调试 cmdId 1005, errCode 1
- 当前 Bug 的表现(可附上截图) 开发者工具-远程调试-扫二维码后: 小程序中不停加载; 已接受数据三四秒增加一个数; cmdId 1005, errCode 1; 重装开发者工具也不行; - 预期表现 - 复现路径 - 提供一个最简复现 Demo [图片][图片]
2018-10-30