欢迎来到258分享网,纯净的网络源码分享基地!

258资源分享网

全部作品
全部作品
网站源码
微信源码
素材特效
源码插件
视频教程
建站学院
热门搜索: 织梦  农业种植  农业  安全设置  官方
258资源分享 > 建站学院 > 微信开发 > 微信小程序之生物识别

推荐下载

HTML5响应式自适应网咯设计

2020-05-12   浏览:789

HTML5自适应律师工作室类网

2020-04-04   浏览:654

高端HTML5响应式企业通用网

2020-05-06   浏览:560

html5响应式外贸网站英文版

2020-05-08   浏览:545

HTML5影视传媒文化公司类网

2020-05-12   浏览:543

微信小程序之生物识别

发布时间:2020-12-23  

今天闲来没事,了解下生物识别。生物识别有三个接口1、wx.checkIsSupportSoterAuthentication 用来获取本机支持的生物识别方式(人脸、指纹、声纹)2、wx.startSoterAuthentication 进行生物认证3、wx.checkIsSoterE ...

 

 

 

今天闲来没事,了解下生物识别。

生物识别有三个接口

1、wx.checkIsSupportSoterAuthentication 用来获取本机支持的生物识别方式(人脸、指纹、声纹) 2、wx.startSoterAuthentication 进行生物认证 3、wx.checkIsSoterEnrolledInDevice 检测是否录入生物信息

有兴趣的童鞋可以拿代码去玩玩试试看

wxml代码

bindtap="checkIsFingerPrint">检测是否可以指纹识别 bindtap="checkIsFacial">检测是否可以人脸识别 bindtap="HaveFingerPrint">该设备是否录入指纹 bindtap="FingerPrint">识别指纹

js代码

Page({ /** * 页面的初始数据 */ data: { isfingerPrint : false, //可否使用指纹识别 默认false isfacial: false, //可否使用人脸识别 默认false }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { var that = this //查看支持的生物认证 比如ios的指纹识别 安卓部分机器是不能用指纹识别的 wx.checkIsSupportSoterAuthentication({ success(res) { for (var i in res.supportMode){ if (res.supportMode[i] == 'fingerPrint'){ console.log("支持指纹识别", res.supportMode[i]); that.setData({ isfingerPrint : true }) } else if (res.supportMode[i] == 'facial'){ console.log("支持人脸识别", res.supportMode[i]); } } } }) }, //是否可以指纹识别 checkIsFingerPrint:function(){ var boole = this.data.isfingerPrint var txt = "不可以使用指纹识别" if (boole) { txt = "可以使用指纹识别" } show("提示",txt,false); }, //是否可以人脸识别 checkIsFacial: function () { var boole = this.data.isfacial var txt = "不可以使用人脸识别" if (boole){ txt = "可以使用人脸识别" } function SUCC() { console.log("用户点击确定") } function FAIL() { console.log("用户点击取消") } show("提示", txt, true,SUCC,FAIL); }, //进行指纹识别 FingerPrint: function(){ wx.startSoterAuthentication({ requestAuthModes: ['fingerPrint'], challenge: '123456', authContent: '请用指纹', success(res) { console.log("识别成功",res) show("提示", "识别成功", false); }, fail(res){ console.log("识别失败",res) show("提示", "识别失败", false); } }) }, //是否有指纹 HaveFingerPrint:function(){ wx.checkIsSoterEnrolledInDevice({ checkAuthMode: 'fingerPrint', success(res) { if (res.isEnrolled == 1){ show("提示", "有指纹", false); } else if (res.isEnrolled == 0){ show("提示", "无指纹", false); } }, fail(res){ show("提示", "异常", fail); } }) } }) /** * 显示提示信息 * tit 提示的标题 * msg 提示的内容 * q 是否有取消按钮(布尔值) * succ 用户点击确定的回调(非必须) * fail 用户点击取消的回调(非必须) * */ function show(tit,msg,q,succ,fail){ wx.showModal({ title: tit, content: msg, showCancel:q, success: function (res) { if (res.confirm) { if (succ){ succ(); } } else if (res.cancel) { if (fail) { fail(); } } } }) }

本文标签

: