在谷歌搜索这个问题时,我发现
the following让我相信它不应该是一个问题,所以我确定我做错了什么但是无法解决.
有时我在身份验证过期后导航到我的应用程序时,它会加载页面而不是重定向到/ login,在控制台中我看到:
Error: permision denied at /the/firebase/url: Client doesn't have permission to access the desired data
如果我重新加载页面,我将按预期成功定向到/ login.
angular.module('app',['firebase','ngRoute','ngAnimate','ui.bootstrap']) .factory("Auth",function($firebaseAuth){ var ref = new Firebase("https://app.firebaseio.com"); return $firebaseAuth(ref); }) .run(['$rootScope','$location','$window',function($rootScope,$location,$window){ $rootScope.$on('$routeChangeError',function(event,next,prevIoUs,error){ $location.path('/login'); }); if($window.localStorage.getItem('app-last-list')) { $location.path('/lists/' + $window.localStorage.getItem('app-last-list')); } }]) .config(['$routeProvider',function($routeProvider){ $routeProvider .when('/',{ templateUrl: 'views/list-view.html',controller: 'ListViewController',resolve: { "currentAuth": ['Auth',function(Auth) { return Auth.$requireAuth(); }] } }) .when('/login',{ templateUrl: 'views/login-view.html',controller: 'LoginController' }) .when('/lists/:id',{ templateUrl: 'views/list-items-view.html',controller: 'ListItemsController',function(Auth){ return Auth.$requireAuth(); }],"list": ['$route','dao',function($route,dao){ return dao.getPrivateList($route.current.params.id).$loaded(); }],"items": ['$route',dao){ return dao.getListItems($route.current.params.id).$loaded(); }] } }) .otherwise( {redirectTo: '/' }); }]);