0
我是新的移動開發和需要支持我的應用程序使用的鑰匙扣,可以請你幫我如何添加鑰匙扣插件以及如何使用它..如何使用鑰匙扣在離子混合移動應用
我是新的移動開發和需要支持我的應用程序使用的鑰匙扣,可以請你幫我如何添加鑰匙扣插件以及如何使用它..如何使用鑰匙扣在離子混合移動應用
創建一個新的項目並添加這個插件
cordova plugin add https://github.com/shazron/KeychainPlugin.git
而在你的控制器做
module.controller('MyCtrl', function($scope, $cordovaKeychain) {
$scope.getValueFromKey = function(key) {
$cordovaKeychain.getForKey(key, servicename).then(function(value) {
console.log(value);
}, function (err) {
console.error(err);
});
};
});
看看cordovakeychain插件和Git-hub使用它。
科爾多瓦插件添加https://github.com/shazron/KeychainPlugin.git .......這個命令不起作用 –
爲我工作。確認您使用的是最新的cordova&ionic –