MissingTranslationStrategy
在系统启动时使用此枚举作为 bootstrapModule
的一个选项来定义策略,编译器应该在缺少翻译的情况下使用:
Use this enum at bootstrap as an option of bootstrapModule
to define the strategy that the compiler should use in case of missing translations:
enum MissingTranslationStrategy {
Error: 0
Warning: 1
Ignore: 2
}
说明
Error:如果缺少翻译,则抛出该错误。
Error: throw if you have missing translations.
Warning(默认):在控制台和/或应用外壳中显示警告。
Warning (default): show a warning in the console and/or shell.
Ignore:什么都不做。
Ignore: do nothing.
有关更多信息,请参见《i18n 指南》。
See the i18n guide for more information.
Further information available in the Usage Notes...
成员列表
成员 | 说明 |
---|---|
Error: 0 | |
Warning: 1 | |
Ignore: 2 |
使用说明
例子
Example
import { MissingTranslationStrategy } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
platformBrowserDynamic().bootstrapModule(AppModule, {
missingTranslation: MissingTranslationStrategy.Error
});