我正在尝试对应用程序中大多数路由的用户进行身份验证。
有没有办法在所有路线上在全球范围内做到这一点?所以我不需要以下内容:
resolve : {
//This function is injected with the AuthService where you'll put your authentication logic
'auth' : function(AuthService){
return AuthService.authenticate();
}
}
每次$routeProvider.when()
通话。