以下日期选择器输入在我的本地系统中效果很好
<input type="text" class="form-control" [ngModel]="myModel" value="{{ myFilterValue | date:'MM/dd/yyyy' }}" bsDatepicker>
但是开发服务器中出现以下错误:
Khronos语言环境错误:请在使用语言环境“ en”之前先加载
我尝试添加配置,但是没有用。
[bsConfig]='{locale: "en"}'
我想念什么?
答案 0 :(得分:0)
在Component中,尝试导入语言环境文件
import { BsLocaleService } from 'ngx-bootstrap/datepicker';
constructor(private _localeService: BsLocaleService) {
this._localeService.use('engb');
}