我正在尝试创建我的第一个Angular应用程序。但是它根本不起作用。我不知道有什么问题。我检查了控制台,但没有erros。
<head>
<meta charset="utf-8">
<script src="https://code.angularjs.org/1.6.0/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.6.0/angular-route.js"></script>
</head>
<body ng-app="myApp">
<h1>Test angular</h1>
<a href="#/">Main</a>
<a href="#sec">Second</a>
<a href="#th">Third</a>
<div ng-view></div>
</body>
<script>
var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
$routeProvider
.when("/", {
templateUrl : "main.html"
})
.when("/sec", {
templateUrl : "sec.html"
})
.when("/th", {
templateUrl : "th.html"
});
});
</script>
任何人可以帮我吗?
Angular 1.6中的路由从#/myUrl
更改为#!/myUrl
您应该更改您的参考:
<a href="#!/">Main</a>
<a href="#!/sec">Second</a>
<a href="#!/th">Third</a>
请参阅此答案如果要删除此前缀。
尝试在脚本中添加$ locationprovider
app.config(['$locationProvider', function($locationProvider) {
$locationProvider.hashPrefix('');
}]);
我发现您没有正确包含$routeProvider
,这是工作路由代码:
app.config(['$routeProvider', function($routeProvider) {
$routeProvider
.when("/", {
templateUrl : "main.html"
})
.when("/sec", {
templateUrl : "sec.html"
})
.when("/th", {
templateUrl : "th.html"
});
}]);
尝试此代码,它正在工作
app.config(['$routeProvider','$locationProvider',function ($routeProvider,$locationProvider) {
$locationProvider.hashPrefix('');
$routeProvider
.when('/', {
templateUrl: 'index.html'
})
.when('/about', {
templateUrl: 'about.html'
})
.when('/service', {
templateUrl: 'service.html'
});}]);
您需要修复HREF属性:
正确的方法是:
<a href="#/">Main</a>
<a href="#/sec">Second</a>
<a href="#/th">Third</a>