APP_ID
表示唯一字符串 ID 的 DI 令牌,主要用于在使用 ViewEncapsulation.Emulated 时为应用程序属性和 CSS 样式添加前缀。
A DI token representing a unique string ID, used primarily for prefixing application attributes and CSS styles when ViewEncapsulation.Emulated is being used.
const APP_ID: InjectionToken<string>;
说明
默认情况下,该值是随机生成的,并且由 Angular 赋值给此应用。要提供一个自定义的 ID 值,可以使用一个 DI 提供者,根 Injector
会使用此令牌。
BY default, the value is randomly generated and assigned to the application by Angular. To provide a custom ID value, use a DI provider to configure the root Injector
that uses this token.