ng2应用程序是否需要AppComponent类? Ng2是组件驱动的,但我想知道是否需要一个专门命名为AppComponent的组件。是否专门连接ng2以在名为AppComponent的类中启动其流程?
答案 0 :(得分:1)
使用 AppComponent 名称不是必需的,但推荐的名称。每个角度应用程序应该有一个可以被提升的组件, AppComponent (也可以有不同的名称)。
Angular2 Team提供了一些指导方针。你可以看看这里 - https://angular.io/docs/ts/latest/guide/style-guide.html。这与您的问题间接无关。
答案 1 :(得分:0)
您可以将名称更改为MyComponent
并在引导程序
bootstrap(MyComponent, [...]).catch(err => console.error(err));