What's the difference between BrowserModule and platformBrowserDynamic?

前端 未结 3 2070
庸人自扰
庸人自扰 2021-02-06 10:05

What are the purposes of these two modules?

import { BrowserModule } from \'@angular/platform-browser\';
import { platformBrowserDynamic } from \'@angular/platfo         


        
3条回答
  •  梦谈多话
    2021-02-06 11:01

    BrowserModule-Exports required infrastructure for all Angular apps. Included by default in all Angular apps created with the CLI new command. Re-exports CommonModule and ApplicationModule, making their exports and providers available to all apps.

    platformBrowserDynami-to bootstrap an application.

提交回复
热议问题