誰でもこれを助けることができますか? var ABCKeyを更新できません。 setAuthenticatedAccountとconsole.logを実行して正しい値を返します。その後、getAuthenticatedAccountを実行し、undefinedを受け取ります。Angularjs Factory内のバールを更新できません
angular.module('authentication.service', [
])
.factory('Authentication', ['$state', '$cookies', '$http', 'app', 'routes', 'cfCryptoHttpInterceptor',
function($state, $cookies, $http, app, routes, cfCryptoHttpInterceptor) {
var ABCKey;
var setAuthenticatedAccount = function (account, tokenAuth) {
var accountInfo = {'email': account.email, 'username': account.username, 'token': tokenAuth}
var abc = CryptoJS.enc.Base64.parse(account.abc);
Authentication.setABCKey(abc);
console.log(Authentication.showABCKey())
}
var getAuthenticatedAccount = function() {
if(!$cookies.authenticatedAccount) {
return;
}
console.log(Authentication.showABCKey())
}
var setABCKey = function(key) {
ABCKey = key;
};
var showABCKey = function() {
return ABCKey;
};
var Authentication = {
setAuthenticatedAccount: setAuthenticatedAccount,
getAuthenticatedAccount: getAuthenticatedAccount,
setABCKey: setABCKey,
showABCKey: showABCKey
};
return Authentication;
}]);
ようdecelaration時
var ABCKey=null
を設定参照/ステートメント/リターン)を指定します(https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/if...else)。 – georgeawg