bootstrap类在哪里?

时间:2017-03-28 08:49:52

标签: angular

初学者问题。我坚持使用为Angular 2的测试版编写的教程。它是在线课程的一部分。我应该将Routing添加到应用程序中,以便它可用于所有组件。教程说我应该将它添加到 boot.ts,,但是没有这样的文件。我应该创建吗?

以下是boot.ts中的内容:

import {bootstrap}    from 'angular2/platform/browser'
import {AppComponent} from './app.component'

bootstrap(AppComponent);

显然这是针对测试版的。决赛中的bootstrap班级在哪里?它甚至是如何工作还是整个事情现在都被弃用了?

1 个答案:

答案 0 :(得分:1)

请查看文档页面(https://angular.io/docs/ts/latest/guide/setup.html

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

platformBrowserDynamic().bootstrapModule(AppModule);

或使用Angular CLI(https://github.com/angular/angular-cli),这是Angular的官方开发工具。

不过,我认为文档页面比你的在线课程更有用,因为这门课程的内容似乎已经过时了。

对于初学者,建议使用Angular CLI。