如何在“检查用户登录状态”功能之前启动authCheck工厂?
我正在尝试检查路由和http请求中$rootScope
的状态:
//Global Logout Function
myApp.run(function($rootScope, $http) {
$rootScope.logout = function() {
$http.post('/api/auth/logout');
};
});
//Check Login state of user
myApp.run(function($rootScope, $http, $window) {
$rootScope.$on('$routeChangeStart', function () {
$http.get('/api/auth')
.then(function successCallback(response) {
$rootScope.logStatus = response.data.data.loggedIn;
console.log('initial ' + $rootScope.logStatus);
}, function errorCallback(response) {
$rootScope.logStatus = response.data.data.loggedIn;
});
return $rootScope.logStatus;
});
});
//Check for authenticated users on http requests (API calls and Routing changes) and redirect to login if logged out
myBirkman.factory('authCheck', ['$rootScope','$window', function($rootScope, $window) {
var authCheck = {
'request': function(config) {
if ($rootScope.logStatus == true) {
//do nothing
console.log('redirect ' + $rootScope.logStatus);
} else if ($rootScope.logStatus == false) {
$window.location.href = '/login.php';
}
},
'response': function(response) {
return response;
}
};
return authCheck;
}]);
// Define routing within the app
myApp.config(['$httpProvider', '$routeProvider', function($httpProvider, $routeProvider) {
$httpProvider.interceptors.push('authCheck');
我试图将$ rootScope元素转换为常量,但同样的问题正在出现。工厂在运行功能之前运行,因此在工厂运行之前不会更新常量。
答案 0 :(得分:0)
如果在解析承诺后填充了值,则无法确定该值是否存在。您将无法获得$rootScope.logStatus
的正确值,因为它仅在$http.get
调用完成后填充,这可能在您的工厂代码完成执行后发生
答案 1 :(得分:0)
非常感谢Aditya。解决方案是我的拦截器功能格式不正确。重新格式化后,我的代码就像一个魅力。请注意,不要忘记传回请求中的配置和响应中的响应,以便您的请求仍然按预期运行。