我正在尝试使用我的phonegap应用设置Touch ID https://github.com/EddyVerbruggen/cordova-plugin-touch-id但我没有运气
我使用cordova CLI安装它。
我已经尝试了我在文档和互联网上看到的所有内容,但仍然没有运气,我不确定我是否遗漏了一些东西。
当我尝试将此代码放入我的HTML并在浏览器中查看时,插件已加载,但在实际的phonegap应用程序中查看时却没有。
<button onclick="window.plugins.touchid.isAvailable(function(msg) {alert('ok: ' + msg)}, function(msg) {alert('not ok: ' + msg)})">Touch ID available?</button>
<button onclick="window.plugins.touchid.verifyFingerprint('Scan your fingerprint please', function(msg) {alert('ok: ' + msg)}, function(msg) {alert('not ok: ' + JSON.stringify(msg))})">Scan fingerprint</button>
谢谢,
答案 0 :(得分:0)
如果您使用npm
进行安装,请找到此问题的解决方案default
或github
$ cordova plugin add cordova-plugin-touch-id
$ cordova prepare
您仍然需要在config.xml中添加插件
$ cordova plugin add https://github.com/EddyVerbruggen/cordova-plugin-touch-id
$ cordova prepare
希望这会有所帮助。