在新版本的angular@1.6.0及以上版本时,配置ngRoute后,点击html#/a显示内容,点击超链接后url跳转去了html#!/a#%2Fa,旧版本(@1.5.9)就没有这个问题,url为html#/a。(描述不好请见谅)2.代码 var app = angular.module('app',['ngRoute']); // 配置路由
app.config(['$routeProvider',function($routeProvider) {
$routeProvider
.when('/a', {
controller : 'AController',
templateUrl : 'a_tmpl'
})
}]);
app.controller('AController', ['$scope', function($scope) {
$scope.title = "AAA";
}]);
添加回答
举报
0/150
提交
取消