我正在玩Angular2。作为基础,我使用了angular.io页面中的快速入门项目。
一切似乎都很好,但是一旦我尝试将服务(ItemService
)注入我的服务,AppComponent
我就会得到以下异常:
Token(ComponentRef) 实例化期间出错!。原始错误:无法解析 AppComponent 的所有参数。确保它们都具有有效的类型或注释。
我在互联网上看到过类似的问题(包括 stackoverflow,例如这篇文章),但似乎都没有解决我的问题。有没有人有任何想法,问题可能是什么?
我还看到了一些解决方案(例如 Angular2 存储库中的解决方案),它们使用Injectable
-annotation 装饰可注入类。但是这对我不起作用,因为它没有在angular.d.ts
. 我使用了错误的版本吗?
您可以在以下 Plunker 中找到我的解决方案:http: //plnkr.co/edit/7kK1BtcuEHjaspwLTmsg
作为记录,您还可以在下面找到我的两个文件。请注意,app.js
来自 Plunker 的是我下面的 TypeScript 文件生成的 JavaScript 文件,例外总是相同的。
index.html
:
<html>
<head>
<title>Testing Angular2</title>
<script src="https://github.jspm.io/jmcriffey/bower-traceur-runtime@0.0.87/traceur-runtime.js"></script>
<script src="https://jspm.io/system@0.16.js"></script>
<script src="https://code.angularjs.org/2.0.0-alpha.23/angular2.dev.js"></script>
</head>
<body>
<app></app>
<script>
System.import('js/app');
</script>
</body>
</html>
js/app.ts
:
/// <reference path="../../typings/angular2/angular2.d.ts" />
import {Component, View, bootstrap, For, If} from "angular2/angular2";
class Item {
id:number;
name:string;
constructor(id:number, name:string) {
this.id = id;
this.name = name;
}
}
class ItemService {
getItems() {
return [
new Item(1, "Bill"),
new Item(2, "Bob"),
new Item(3, "Fred")
];
}
}
@Component({
selector: 'app',
injectables: [ItemService]
})
@View({
template: `<h1>Testing Angular2</h1>
<ul>
<li *for="#item of items">
{{item.id}}: {{item.name}} |
<a href="javascript:void(0);" (click)="toggleSelected(item);">
{{selectedItem == item ? "unselect" : "select"}}
</a>
</li>
</ul>
<item-details *if="selectedItem" [item]="selectedItem"></item-details>`,
directives: [For, If, DetailComponent]
})
class AppComponent {
items:Item[];
selectedItem:Item;
constructor(itemService:ItemService) {
this.items = itemService.getItems();
}
toggleSelected(item) {
this.selectedItem = this.selectedItem == item ? null : item;
}
}
@Component({
selector: 'item-details',
properties: {
item: "item"
}
})
@View({
template: `<span>You selected {{item.name}}</span>`
})
class DetailComponent {
item:Item;
}
bootstrap(AppComponent);
提前感谢您的任何想法!