我有一个主网站,它使用带有侧导航和 ng-route 的 index.html 来使用 ng-view 将内容加载到其中。这很好用。目前,我有一个 event.html 页面,它是一个完全不同的布局,需要基于单独的 ng-app 进行路由。目前,我的网址如下所示:
nameOfOrganization.com <-- 这是使用 index.html 并且可以执行 #/about 之类的操作,并根据该上下文加载页面。但是,如果我想访问 event.html,我目前必须这样做:nameOfOrganization.com/event.html#/
我的问题就在这里。我想要它,这样它就会加载这个完全不同的页面布局,执行类似 nameOfOrganization.com/event#/ 的操作,然后当我想导航到与该页面相关的区域时,我可以执行 nameOfOrganization.com/event#/about。但是,截至目前,我的路由如下所示:
var app = angular.module('event', ['ngRoute']);
app.controller('RouteController', ['$scope', '$route', '$routeParams', '$location', function($scope, $route, $routeParams, $location) {
$scope.$route = $route;
$scope.$location = $location;
$scope.$routeParams = $routeParams;
}]);
app.controller('LandingController', ['$scope', '$rootScope', '$routeParams', '$timeout', '$http', function($scope, $rootScope, $routeParams, $timeout, $http) {
$rootScope.title = 'Event'; // Page name in browser bar
$scope.$routeParams = $routeParams;
$http.get("../json/headshots.json").success(function(data) {
$scope.headshots = data;
// So we give the DOM a second to load the data
setTimeout(function() {
$('.modal-trigger').leanModal();
}, 1500);
});
// Always make sure we are looking at the top of the page
$('html, body').animate({
scrollTop: 0
}, 'slow');
}]);
app.controller('InstructorsController', ['$scope', '$rootScope', '$routeParams', '$timeout', '$http', function($scope, $rootScope, $routeParams, $timeout, $http) {
$rootScope.title = 'Instructors'; // Page name in browser bar
$scope.$routeParams = $routeParams;
$http.get("../json/instructors.json").success(function(data) {
$scope.headshots = data;
});
// Always make sure we are looking at the top of the page
$('html, body').animate({
scrollTop: 0
}, 'slow');
}]);
app.config(function($routeProvider, $locationProvider) {
$routeProvider
.when('/', {
templateUrl: 'pages/event-landing-page.html',
controller: 'LandingController',
})
.when('/instructors', {
templateUrl: 'pages/instructors.html',
controller: 'InstructorsController',
})
.otherwise({
redirectTo: '/'
});
// Leave this false so people can access pages without having
// to go to cwru.edu/swingclub first.
$locationProvider.html5Mode(false);
});
现在,当我单击主 event.html 页面上的 href 时,我让它发送#instructors。但这会将 location.path 更改为 nameOfOrganization.com/#/instructors,它不在此路由系统中,或者在 index.html 上使用的那个,所以我最终被路由回 nameOfOrganization.com。
有没有一种方法可以与我现有的系统配合得很好,并且不需要太多的动荡?另外,作为参考,我这样做的原因是因为我正在使用我的学校服务器空间,他们不允许我做任何形式的后端路由,所以这就是我目前所坚持的.