BrowserModule

The ng module for the browser.

供浏览器使用的 NgModule。

class BrowserModule { static withServerTransition(params: {...}): ModuleWithProviders<BrowserModule> }

静态方法

Configures a browser-based application to transition from a server-rendered app, if one is present on the page. The specified parameters must include an application id, which must match between the client and server applications.

配置基于浏览器的应用,使其可以从当前页面上的服务端渲染(SSR)应用过渡而来。 指定的参数必须包含一个应用 id,在客户端应用和服务端应用之间它必须一致。

static withServerTransition(params: { appId: string; }): ModuleWithProviders<BrowserModule>

参数

params

Type: { appId: string; }.

返回值

ModuleWithProviders<BrowserModule>

注解

@NgModule({ providers: BROWSER_MODULE_PROVIDERS, exports: [CommonModule, ApplicationModule] })