当您将firebase作为后端并使用离子2时,您可以使用触摸ID吗?这是我当前的代码。
platform.ready().then(() => {
touchid.checkSupport(() => {
touchid.authenticate((result) => {
ngZone.run(() => {
this.navCtrl.setRoot(TabsPage);
});
}, (error) => {
alertCtrl.create({
title: "Attention!",
subTitle: error,
buttons: ["Close"]
});
}, "Please Authenticate");
}, (error) => {
alertCtrl.create({
title: "Attention!",
subTitle: "Touch ID is not supported",
buttons: ["Close"]
});
});
});
您是否想将Firebase与TouchID一起使用?由于您的代码是身份验证代码样本。但是,如果您想是的,则可以像确定结果为TRUE时一样使用它,您可以调用firebase方法做某事。
它们无关,TouchID是一个插件,Firebase是一个数据库。