Ionic App Global AppCtrl,这是正确的



这是本周我第三次接触到某个代码,该代码在app

中使用了这样的appController
<body ng-app="app" ng-controller="AppCtrl">
  <div id="inner" ng-view=""  ></div>
</body>

在控制器中,它们将其重定向到应用程序的不同部分,像这样

.controller("AppController",function({$location}{
    if(isUserAthenticated){
        $location.path("/home");
    }else{
       $location.path("/login")
    }
});

这是这样做的正确方法。因为在我看来没有。我看到这种方法非常刺耳,应该有正确的方法。你们能否让我知道处理这种情况的最好和推荐方法?

更新:路由config

   // delete  $httpProvider.defaults.headers.common["Access-Control-Request-Headers"];
    $routeProvider
        .when('/app', {
            templateUrl: 'views/login.html',
            controller: 'AppCtrl'
        }).
    when('/privados', {
        templateUrl: 'views/privados.html',
        controller: 'PrivadosCtrl  as ctrl'
    }).
    when('/mensaje/:id', {
        templateUrl: 'views/mensaje.html',
        controller: 'MensajeCtrl as ctrl'
    }).
    when('/grupales', {
        templateUrl: 'views/grupales.html',
        controller: 'GrupalesCtrl as ctrl'
    }).
    when('/comunicados', {
        templateUrl: 'views/comunicados.html',
        controller: 'ComunicadosCtrl as ctrl'
    }).
    when('/contactos', {
        templateUrl: 'views/contactos.html',
        controller: 'ContactosCtrl'
    }).
    when('/perfil', {
        templateUrl: 'views/perfil.html',
        controller: 'PerfilCtrl'
    }).
    when('/principal', {
        templateUrl: 'views/principal.html',
        controller: 'PrincipalCtrl as ctrl'
    }).
    when('/nmensaje/:type', {
        templateUrl: 'views/nmensaje.html',
        controller: 'NMensajeCtrl as ctrl'
    }).
    when("/user/password",{
        templateUrl:"views/passwordreset.html",
        controller: "ResetPasswordCtrl as ctrl"
    }).
    otherwise({
        redirectTo: '/app'
    });

我发现在Angular应用中管理身份验证的最佳方法是:

在您的Angular App的.config()方法中:

//this event will be fired in every location change.
$rootScope.$on('$routeChangeSuccess', function(e, toState, fromState) {
            if (toState.loginRequired) {
                if (!isUserAthenticated()) {
                    e.preventDefault();
                    $location.path('/login');
                }
            }
        });

然后在您的路线中您可以指定哪个需要登录:

when('/nmensaje/:type', {
    templateUrl: 'views/nmensaje.html',
    controller: 'NMensajeCtrl as ctrl',        
    loginRequired: true
}).
when("/user/password",{
    templateUrl:"views/passwordreset.html",
    controller: "ResetPasswordCtrl as ctrl",
    loginRequired: true
}).

此外,您可以创建一个角色工厂来管理用户的身份验证状态。

请注意,使用这种方法,您将不需要AppCtrl。

相关内容

  • 没有找到相关文章

最新更新