我做错了什么?
app.component.ts
import {Component} from 'angular2/core';
@Component({
selector: 'my-app',
template: `{{title}}`
})
export class App {
title = "Angular 2 beta";
constructor() { console.clear(); }
}
main.ts
import {bootstrap} from 'angular2/platform/browser';
import {AppComponent} from './app.component';
bootstrap(AppComponent);
错误是
EXCEPTION: TypeError: Cannot read property 'annotations' of undefined
答案 0 :(得分:19)
类名与bootstrapping不匹配。即,而不是
export class App { ... }
使用
export class AppComponent { ... }
Angular正在尝试查找名为annotations
的类的AppComponent
属性,但该类不存在,因此出错。