0
我是Angular的新手,目前正在構建應用程序的身份驗證和導航部分。我遵循this有用的github條目中描述的想法。問題html5 pushstate in angularjs
當用戶導航到應用程序時,他們被重定向到<app>/login
,這會正確顯示登錄屏幕。
我的問題是,在我的實現,不像教程,當用戶設置的URL <app>/login
我得到404,而不是正確的頁面( <app>/#/login
效果很好)。
我使用AngularJS V1.2.5, 這是我的應用程序配置文件:
'use strict';
angular.module('myApp', ['ngCookies', 'ngRoute', 'ngResource'])
.config(['$routeProvider', '$locationProvider', '$httpProvider',
function ($routeProvider, $locationProvider, $httpProvider) {
var access = routingConfig.accessLevels;
$routeProvider.when('/',
{
templateUrl: 'views/home.html',
controller: 'HomeCtrl',
access: access.anon
});
$routeProvider.when('/login',
{
templateUrl: 'views/login.html',
controller: 'HomeCtrl',
access: access.anon
});
$routeProvider.when('/404',
{
templateUrl: 'views/404.html',
access: access.anon
});
$routeProvider.otherwise({redirectTo: '/404'});
$locationProvider.html5Mode(true);
$httpProvider.interceptors.push(function ($q, $location) {
return {
'responseError': function (response) {
if (response.status === 401 || response.status === 403) {
$location.path('/login');
return $q.reject(response);
}
else {
return $q.reject(response);
}
}
}
});
}])
.run(['$rootScope', '$location', '$http', 'Auth', function ($rootScope, $location, $http, Auth) {
$rootScope.$on("$routeChangeStart", function (event, next, current) {
$rootScope.error = null;
if (!Auth.authorize(next.access)) {
if(Auth.isLoggedIn()) $location.path('/');
else $location.path('/login');
}
else {
angular.element('body').removeClass('naked');
}
});
}]);
我缺少的東西?
有誰知道如何支持Jetty的URL重寫?它只是一個過濾器? – Luke