0

ui.router用来检测 Angular App 中的状态变化。但是控制器没有在加载时被调用。

下面是我的app.js代码。

 var admin = angular.module('admin',['admin.core']);
    angular.module('admin.core', ['ui.router', 'satellizer', 'ngMaterial']);

    admin.config(function($mdThemingProvider, $stateProvider, 
                          $urlRouterProvider, $authProvider, $locationProvider){
    $mdThemingProvider.theme('default').primaryPalette('light-blue', {
        'default': '700',
        'hue-1' : 'A200',
    }).accentPalette('blue');

    // Satellizer configuration that specifies which API route the JWT should be retrieved from
    $authProvider.loginUrl = '/api/authenticate';

    // Redirect to the auth state if any other states are requested other than users
    $urlRouterProvider.otherwise('/admin/login');
    console.log($stateProvider)
    $stateProvider
        .state('login', {
            url: '/admin/login',
            name: 'login',
            controller: 'AuthController as auth',
        })
        .state('users', {
            url: '/admin/users',
            controller: 'UserController as user'
        });
       $locationProvider.html5Mode(true);
    });

    admin.controller('AuthController', AuthController);

    function AuthController($auth, $state, $scope) {
    console.log("Called");
    var vm = this;

    vm.login = function() {
        var credentials = {
            email: vm.email,
            password: vm.password
        }
        console.log(credentials);
        // Use Satellizer's $auth service to login
        $auth.login(credentials).then(function(data) {
            // If login is successful, redirect to the users state
            $state.go('users', {});
        });
    }

  }

AuthController当我的状态是时不调用login

4

1 回答 1

1

使用时,$locationProvider.html5Mode(true);您必须提供基本 href 位置。它将解析您的状态解析 url,http://localhost:8001/admin/#/login并且应该解决您的问题。

尝试添加<base href="/" /><head />主索引文件的部分以指定应用程序的基本路径。

https://docs.angularjs.org/api/ng/provider/$locationProvider

还要.htaccess在您的服务器上提供一个文件,以始终将特定请求重定向到邮件索引页面。您可能需要对其进行一些调整以适应您的结构。

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index.html$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.html [L]
</IfModule>

请注意,必须在我的 apache 服务器上启用 mod_rewrite。默认情况下它被禁用。

于 2017-01-31T09:58:05.910 回答