BrowserModule
导出所有 Angular 应用都需要的基础设施。默认包含在用 CLI 的 new
命令创建的所有 Angular 应用中。 它二次导出了 CommonModule
和 ApplicationModule
,以便它们的导出物和提供商能用于所有应用中。
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.
class BrowserModule {
static withServerTransition(params: { appId: string; }): ModuleWithProviders<BrowserModule>
}
静态方法
配置基于浏览器的应用,使其可以从当前页面上的服务端渲染(SSR)应用过渡而来。 指定的参数必须包含一个应用 id,在客户端应用和服务端应用之间它必须一致。 Configures a browser-based app to transition from a server-rendered app, if one is present on the page. | |||
参数
返回值重新配置过的
|
提供商
提供商 |
---|
|