wx.checkIsSoterEnrolledInDevice(Object object)

基础库 1.6.0 开始支持,低版本需做兼容处理

获取设备内是否录入如指纹等生物信息的接口

参数

Object object

属性类型默认值必填说明
checkAuthModestring认证方式
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

object.checkAuthMode 的合法值

说明最低版本
fingerPrint指纹识别
facial人脸识别
speech声纹识别(暂未支持)

object.success 回调函数

参数
Object res
属性类型说明
isEnrolledboolean是否已录入信息
errMsgstring错误信息

示例代码

  1. wx.checkIsSoterEnrolledInDevice({
  2. checkAuthMode: 'fingerPrint',
  3. success(res) {
  4. console.log(res.isEnrolled)
  5. }
  6. })