Angular 5提供了一种使用registerLocaleData
在运行时加载i18n语言环境的方法https://angular.io/guide/i18n#i18n-pipes
添加导入并注册到localdata。
import { registerLocaleData } from '@angular/common';
import localeEnIn from '@angular/common/locales/en-IN.js';
registerLocaleData(localeEnIn);
提供本地ID的提供商
providers: [{ provide: LOCALE_ID, useValue: 'en-IN' } ]
问题: 无法更改要在本地ID中提供的任何格式