- 建议增加视频播放的高级属性配置
建议增加视频播放的高级属性配置,如播放控件,画中画,投屏,等官方属性
2021-05-10 - 生物认证API不支持人脸识别吗
手机:iPhone 11 pro 通过调用checkIsSoterEnrolledInDevice API返回的isEnrolled值为0 checkIsSoterEnrolledInDevice({ checkAuthMode: 'facial' }) .then((res) => { const { isEnrolled, errMsg } = res; console.log('检查是否录入生物信息', res); if (isEnrolled) { startSoterAuthentication({ requestAuthModes: ['facial'], challenge: new Date().getTime() + '', authContent: `请使用${biosLabel[type]}解锁` }) .then((res) => { console.log('开始生物认证', res); }) .catch((error) => { console.error(error); const msg = '生物验证失败,' + error.errMsg; showToast({ title: msg, icon: 'none' }); }); } else { //onAuth(0, '生物验证失败,没有录入' + biosLabel[type] + '信息'); } }) .catch((error) => { const msg = '生物验证失败,' + error.errMsg; showToast({ title: msg, icon: 'none' }); });
2020-04-09