我正在尝试在我的角应用中构建某种身份验证,并希望在用户未登录时重定向到外部URL(基于$ http.get)。
当event.preventDefault()是$ stateChangeStart中的第一行时,不知怎的,我最终陷入了无限循环。
我在stackoverflow上看到了多个问题,就像“将event.preventDefault()放在state.go之前的else”中。但是然后控制器被触发,并且在返回promise之前已经显示了页面。
即使我把event.preventDefault()放在else中,也会发生奇怪的事情:
转到根URL,它会在URL后自动添加/#/,并多次触发$ stateChangeStart。
app.js运行部分:
.run(['$rootScope', '$window', '$state', 'authentication', function ($rootScope, $window, $state, authentication) {
$rootScope.$on('$stateChangeStart', function (event, toState, toParams) {
event.preventDefault();
authentication.identity()
.then(function (identity) {
if (!authentication.isAuthenticated()) {
$window.location.href = 'external URL';
return;
} else {
$state.go(toState, toParams);
}
});
});
}]);
authentication.factory.js identity()函数:
function getIdentity() {
if (_identity) {
_authenticated = true;
deferred.resolve(_identity);
return deferred.promise;
}
return $http.get('URL')
.then(function (identity) {
_authenticated = true;
_identity = identity;
return _identity;
}, function () {
_authenticated = false;
});
}
编辑:添加了状态:
$stateProvider
.state('site', {
url: '',
abstract: true,
views: {
'feeds': {
templateUrl: 'partials/feeds.html',
controller: 'userFeedsController as userFeedsCtrl'
}
},
resolve: ['$window', 'authentication', function ($window, authentication) {
authentication.identity()
.then(function (identity) {
if (!authentication.isAuthenticated()) {
$window.location.href = 'external URL';
}
})
}]
})
.state('site.start', {
url: '/',
views: {
'container@': {
templateUrl: 'partials/start.html'
}
}
})
.state('site.itemList', {
url: '/feed/{feedId}',
views: {
'container@': {
templateUrl: 'partials/item-list.html',
controller: 'itemListController as itemListCtrl'
}
}
})
.state('site.itemDetails', {
url: '/items/{itemId}',
views: {
'container@': {
templateUrl: 'partials/item-details.html',
controller: 'itemsController as itemsCtrl'
}
}
})
}])
如果您需要更多信息或app.js中的更多代码,请告诉我们!
答案 0 :(得分:1)
$stateChangeStart
不会等待您的承诺得到解决。让州等待承诺的唯一方法是在州的选项中使用resolve
。
.config(function($stateProvider) {
$stateProvider.state('home', {
url: '/',
resolve: {
auth: function($window, authentication) {
return authentication.identity().then(function (identity) {
if (!authentication.isAuthenticated()) {
$window.location.href = 'external URL';
}
});
}
}
});
});
通过从函数返回一个promise,ui-router不会初始化状态,直到该promise被解决。
如果您有其他或孩子需要等待的状态,您需要注入auth
。
来自wiki:
如果要在实例化子项之前等待解析promise,则必须将解析键注入子状态。