0

请参阅此处的代码:http: //plnkr.co/edit/xIRiq10PSYRsvNE0YWx7 ?p=preview 。

我收到以下 2 个错误。

  1. Route 必须提供路径或正则表达式属性
  2. [$compile:ctreq] http://errors.angularjs.org/1.5.3/ $compile/ctreq?p0=ngOutlet&p1=ngOutlet

索引.html

<!DOCTYPE html>
<html ng-app="favMoviesList">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js</script>
<script src="https://unpkg.com/@angular/router@0.2.0/angular1/angular_1_router.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.css" />
<script src="module.js"></script>
<script src="movies-list-component.js"></script>
<script src="movie-rating-component.js"></script>
<script src="movie-app-component.js"></script>
</head>

<body>
<movie-app></movie-app>
</body>

</html>

模块.js

(function(){
var module = angular.module("favMoviesList",["ngComponentRouter"]);

module.value("$routerRootComponent","movieApp");

module.component("appAbout",{
template:"This is about page"
});
}());

电影应用组件.js

(function(){
var module = angular.module("favMoviesList");

module.component("movieApp",{
templateUrl:"movie-app-component.html",
$routeConfig:[
  { path:"/list",component:"movieList",name:"List"},
  { path:"/about",component:"appAbout",name:"About"},
  { paht:"/**", redirectTo:["List"] }]
});
}());
4

1 回答 1

0

你打错了:paht应该是path.

第二个错误是因为找不到ngOutlet指令“”所需的控制器“”。ngOutlet

于 2016-11-11T13:19:19.877 回答