我试图从我的AuthLoginController控制器使用我的AuthService工厂的登录功能。问题是当用错误的电子邮件和密码执行User.login函数时,console.log()返回 false ,这就是我想要的。但是,当我使用正确的电子邮件和密码时,我得到了
Error: response is not defined
我没有得到它,因为函数(错误){}的一切正常,但函数(成功){}没有,即使它们都是异步调用的结果。
angular
.module('app')
.factory('AuthService', ['Member', '$q', '$rootScope', '$state', function(
User, $q, $rootScope, $state) {
function login(email, password) {
return User
.login({email: email, password: password})
.$promise
.then(function(success) {
$rootScope.currentUser = {
id: response.user.id,
tokenId: response.id,
email: email,
firstname: response.user.firstname,
lastname: response.user.lastname
};
return true;
},
function(error) {
return false;
}
);
} return {
login: login
};
}]);
这是我的AuthLoginController控制器。
angular
.module('app')
.controller('AuthLoginController', ['$scope', 'AuthService', '$state',
function($scope, AuthService, $state) {
$scope.user = {
email: 'test1@test.com',
password: 'test1'
};
$scope.login = function() {
AuthService.login($scope.user.email, $scope.user.password)
.then(function(response) {
console.log(response);
return;
}
//go to the default state after login
$state.go('test');
});
};
}]);
如何从AuthLoginController中检索 true ? 谢谢 (抱歉我的英语不好)
答案 0 :(得分:1)
.then(function(success) {
$rootScope.currentUser = {
id: **response**.user.id,
tokenId: **response**.id,
email: email,
firstname: **response**.user.firstname,
lastname: **response**.user.lastname
};
return true;
},
响应变量未在“success”回调中定义。应该使用“Success”参数变量,或者应该将其重命名为响应。