我正在使用Ionic 2和secureStorage插件。问题是,对于Android,必须使用代码来保护设备才能使用安全存储。
在文档中,它具有:
var ss;
var _init = function () {
ss = new cordova.plugins.SecureStorage(
function () {
console.log('OK');
},
function () {
navigator.notification.alert(
'Please enable the screen lock on your device. This app cannot operate securely without it.',
function () {
ss.secureDevice(
function () {
_init();
},
function () {
_init();
}
);
},
'Screen lock is disabled'
);
},
'my_app');
};
_init();
但我使用的不是离子 1,而是离子 2。如何调用安全设备方法?
我做以下任何事情:
this.secureStorage.create('myStorage')
.then((storage: SecureStorageObject) => {
storage.set('var', 'toto')
.then(
() => console.log('ok),
(e) => console.log('error');
);
}).catch((err) => {
console.error('The device is not secured');
})
我可以在捕获中检测到设备不安全。但是,如何在我的控制台旁边添加对 secureDevice 方法的调用呢?
文档:https://ionicframework.com/docs/native/secure-storage/
已提出并修复,因此您可以使用最新版本的@ionic-native/SecureStorage
。
如果您无法更新离子原生包装器,请进一步阅读。
secureDevice
函数似乎没有添加到ionic原生包装器中,尽管它在Cordova插件中可用。
您可以考虑使用没有包装器的 cordova 插件。
ionic cordova plugin add cordova-plugin-secure-storage --save
在导入之后和类之前,立即声明对象 。
declare var cordova:any;
并在平台 ready(( 中使用插件 api。
this.platform.ready().then(() =>{
this.ss = new cordova.plugins.SecureStorage(
() => { console.log('Success')},
(error) => {
console.log('Error ' + error);
//call here..
this.ss.secureDevice(()=>{},()=>{});
},
'myStorage');
});