我使用 angular 2.0 的最新 alpha 版本,然后我使用 es5 作为它的代码。当我将指令添加到视图注释中时,我遇到了错误。
plunkr: http ://plnkr.co/edit/eJqmvaiDyypPOexr0IgF
place.annotations = [
new angular.ComponentAnnotation({
selector: 'ph-place',
injectables: [Service.Places]
}),
new angular.ViewAnnotation({
template: '<ul><li *for="#place of places">{{ place }}</li></ul>',
directives: [angular.For]
})
];