2016-06-08 61 views

回答

1

創建一個新的項目並添加這個插件

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使用它。

+0

科爾多瓦插件添加https://github.com/shazron/KeychainPlugin.git .......這個命令不起作用 –

+0

爲我工作。確認您使用的是最新的cordova&ionic –