在基于多个用户上下文渲染整个页面并发出多个$http
请求后,我希望用户能够切换上下文并再次重新渲染所有内容(重新发送所有$http
请求等)。如果我只是将用户重定向到其他地方,事情就会正常工作:
$scope.on_impersonate_success = function(response) {
//$window.location.reload(); // This cancels any current request
$location.path('/'); // This works as expected, if path != current_path
};
$scope.impersonate = function(username) {
return auth.impersonate(username)
.then($scope.on_impersonate_success, $scope.on_auth_failed);
};
如果我使用$window.location.reload()
,那么其中一些正在等待响应的$http
请求auth.impersonate(username)
会被取消,所以我不能使用它。此外,黑客$location.path($location.path())
也不起作用(没有任何反应)。
是否有另一种方法来重新呈现页面而无需再次手动发出所有请求?