我有一个令人沮丧的早晨。
我有一个具有基本位置的应用程序,所以在头部是<base href="/my/path/fruits/index.html" />
. 我正在尝试通过函数设置分页nextPage()
。当我点击触发的链接时nextPage()
,我使用$location.path('/page/:page')
.
预期行为:浏览器位置 url 应更改为http://localhost/my/path/fruits/page/2
.
实际行为:浏览器 URL 更改(非常短暂)为http://localhost/my/path/fruits/page/2
,然后恢复为http://localhost/my/path/fruits/
.
注意:如果我不使用基本位置,这种行为似乎不会发生。但是,我需要使用基本位置,因为该应用程序位于服务器的 sub/sub/sub 目录中。
另外:如果我设置,则不会发生此行为$locationProvider.html5Mode(false)
。
难道我做错了什么?这是Angular中的错误吗?任何帮助是极大的赞赏。
以下是相应的文件。
索引.html:
<!doctype html>
<html ng-app="fruits">
<head>
<base href="/my/path/fruits/index.html" />
<script src="angular.js"></script>
<script src="script.js"></script>
</head>
<body>
<div ng-controller="MainCntl">
<div ng-view></div>
</div>
</body>
</html>
脚本.js:
angular.module('fruits', [], function($routeProvider, $locationProvider) {
$routeProvider
.when('/', {
templateUrl: 'fruits.html',
controller: FruitCntl,
})
.when('/page/:page', {
templateUrl: 'fruits.html',
controller: FruitCntl,
})
.otherwise({redirectTo:'/'})
;
// configure html5
$locationProvider.html5Mode(true).hashPrefix('!');
}).filter('startFrom', function()
{
return function(input, start)
{
start = +start; //parse to int
if (input == undefined){
input = [];
}
return input.slice(start);
}
})
;
function MainCntl($scope,$location){
angular.extend($scope,{
current_page: 1,
per_page: 3,
fruits: [
{name: 'Apples', color: 'red'},
{name: 'Bananas', color: 'yellow'},
{name: 'Oranges', color: 'orange'},
{name: 'Grapes', color: 'purple'},
{name: 'Blueberries', color: 'blue'},
{name: 'Strawberries', color: 'red'},
{name: 'Raspberries', color: 'red'},
{name: 'Clementines', color: 'orange'},
{name: 'Pears', color: 'green'},
{name: 'Mangoes', color: 'orange'}
],
nextPage: function(){
this.current_page++;
$location.path('/page/'+this.current_page);
},
previousPage: function(){
this.current_page--;
$location.path('/page/'+this.current_page);
}
})
$scope.total_pages = Math.ceil($scope.fruits.length / $scope.per_page);
}
function FruitCntl($scope,$location,$routeParams){
if ($routeParams.page != undefined){
$scope.current_page = $routeParams.page;
}
}
fruits.html(视图)
Page: <a ng-click="previousPage()" ng-show="current_page > 1">Previous</a> {{current_page}} of {{total_pages}} <a ng-click="nextPage()" ng-show="current_page < total_pages">Next</a>
<div ng-repeat="fruit in fruits | startFrom:(current_page - 1)*per_page | limitTo:per_page">
{{fruit.name}} are {{fruit.color}}<br/>
</div>