我不能爲我的生活弄清楚我做錯了什麼。我正在做一些John Linquist視頻,做一些基本的AngularJS路由。當我在partials
文件夾和我的index.html
頁面中沒有我的表格(並且沒有使用ng-view
,因此我不必配置路由選擇時,它可以正常工作。但是,我嘗試將我的表格的局部視圖與<ng-view></ng-view>
然後我得到錯誤:http://goo.gl/nZAgrj(從角文檔)Angular JS的路由問題
app.js
angular.module('enterprise',[])
.config(function($routeProvider){
$routeProvider.when("/",{templateUrl:"/partials/list.html"})
})
//this is the that iterated over in the partial view's ng-repeat
function AppController($scope){
$scope.crew =[
{name:'Picard',description:'captain'},
{name: 'Riker',description:'number 1'},
{name:'Word',description:'Security'}
]
}
的index.html
<!DOCTYPE html>
<html>
<head>
<title>Angular JS Routing</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"/>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet">
</head>
<body>
<div ng-app="enterprise" ng-controller="AppController">
<a href="/"><h2>Enterprise Crew</h2></a>
<ng-view></ng-view>
//list.html should be injected here
</div>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.7/angular.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>
list.html
<table class="table table-striped" style="width: 250px">
<thead>
<tr>
<td>Name</td>
<td>Description</td>
<td><i class="glyphicon glyphicon-plus-sign"></i> </td>
</tr>
</thead>
<tbody>
<tr ng-repeat="person in crew">
<td>{{person.name}}</td>
<td>{{person.description}}</td>
<td><i class="glyphicon glyphicon-edit"></i></td>
</tr>
</tbody>
</table>
嗯,謝謝主席先生。我想我找到了一個沒有內置路由的角度版本,因爲在我看到的所有教程中,他們都沒有專門包含它,但就是這樣。 – wootscootinboogie
他們不包括它在1.2版本。它是一個共同的問題。 – Nix