【发布时间】:2015-09-02 17:34:46
【问题描述】:
这是我开始学习AngularJS后的第二天。添加一些路线后,我的视图没有加载,我不知道为什么。这些是我的代码。
index.html
<!doctype html>
<html ng-app="myApp">
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<script src="https://code.angularjs.org/1.4.5/angular.js"></script>
<script src="angular-route.js"></script>
<script src="app/controllers/app.js"></script>
<script src="app/controllers/customersController.js"></script>
</head>
<body>
<div ng-view></div>
</body>
</html>
app.js
angular.module('myApp', ['ngRoute'])
.config(function ($routeProvider) {
'use strict';
$routeProvider
.when('/', {
controller: 'CustomersController',
templateUrl: 'app/views/customers.html'
})
.otherwise( { redirectTo: '/' });
});
customers.html
<h3>Customers</h3>
Filter: <input type="text" ng-model="customerFilter.name" />
<br/><br/>
<table>
<tr>
<th ng-click="doSort('name')">Name</th>
<th ng-click="doSort('city')">City</th>
<th ng-click="doSort('orderTotal')">Order Total</th>
<th ng-click="doSort('joined')">Joined</th>
</tr>
<tr ng-repeat="cust in filtered = (customers | filter:customerFilter | orderBy:sortBy:reverse)">
<td>{{ cust.name | uppercase }}</td>
<td>{{ cust.city }}</td>
<td>{{ cust.orderTotal | currency:'PLN' }}</td>
<td>{{ cust.joined | date}}</td>
</tr>
</table>
<span> Total customers: {{ filtered.length }} </span>
customersController.js
angular.module('myApp', ['ngRoute'])
.controller('CustomersController', function ($scope) {
'use strict';
$scope.sortBy = 'name';
$scope.reverse = false;
$scope.customers = [
{
joined: '2005-09-07',
name: 'Mayweather',
city: 'Brooklyn',
orderTotal: '43.1299'
},
{
joined: '2005-09-07',
name: 'Jason',
city: 'Cleveland',
orderTotal: '89.8933'
},
{
joined: '1999-08-27',
name: 'Jade',
city: 'Wroclaw',
orderTotal: '77.0092'
},
{
joined: '2015-09-01',
name: 'David',
city: 'Accra',
orderTotal: '13.8465'
},
{
joined: '2001-01-18',
name: 'Doyet',
city: 'Paris',
orderTotal: '23.9930'
}];
$scope.doSort = function (propName) {
$scope.sortBy = propName;
$scope.reverse = !$scope.reverse;
};
});
这是我的树结构:
.
├── angular-route.js
├── angulars.js
├── app
│ ├── controllers
│ │ ├── app.js
│ │ └── customersController.js
│ └── views
│ └── customers.html
├── index.html
└── zextra
├── helloworld.html
└── ngrepeat.html
4 directories, 8 files
(zextra 文件夹无关)
这是我在控制台中遇到的错误:
empty. nothing!
任何想法为什么我在浏览器中看不到任何内容但没有错误?
编辑: 在 Pankaj Parker 的帮助下修复了主要错误后编辑的问题。
【问题讨论】:
-
<script> src="angular-route.js"</script>应该是<script src="angular-route.js"></script>
标签: javascript angularjs url-routing single-page-application angularjs-routing