アプリケーションのすべてのページで現在のユーザーをロードするという約束を解決したいと思います。$routeProvider.when()
現在、すべてのルートで解決を繰り返しています。
$routeProvider.when('/users/edit/:userId', {
templateUrl: 'app/app/assets/partials/user-edit.html',
controller: 'UserEditController',
resolve:{
'currentUser':function( UserService){
return UserService.getCurrentUser();
}
}
});
$routeProvider.when('/staff_profil/edit', {
templateUrl: 'app/app/assets/partials/profil-edit.html',
controller: 'ProfilEditController',
resolve:{
'currentUser':function( UserService){
return UserService.getCurrentUser();
}
}
});
私の目標は、繰り返しなしですべてのルートの現在のユーザーを解決することです。