angular2我如何编程引导程序?

时间:2016-09-12 17:29:45

标签: angular

我正在升级到RC6,我需要以编程方式引导我的应用程序。在过去,我刚从平台浏览器动态调用bootstrap,但它现在已经消失了。我怎么能这样做?

2 个答案:

答案 0 :(得分:1)

从RC5开始,你不再需要引导组件了,你就像这样引导模块:

import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app.module';

platformBrowserDynamic().bootstrapModule(AppModule);

你的app.module应该是这样的:

import { NgModule }      from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent }  from './app.component';

@NgModule({
  imports:      [ BrowserModule ],
  declarations: [ AppComponent ],
  bootstrap:    [ AppComponent ]
})

export class AppModule { }

有关详情,请查看Angular 2 Modules official docs以及RC4 to RC5 (basically RC6) Migration docs.

答案 1 :(得分:0)