在应用程序级别Ionic上配置此日期选择器月份语言

时间:2019-02-19 13:54:49

标签: ionic-framework datepicker

是否可以直接从应用程序中自定义本机DatePicker的语言。 我的应用程序支持两种语言,我想分别将月份名称更改为德语英语。 仅在更改手机语言时才会更改…

chooseDate(mode: string, keyname: string, oldDate: boolean) {
  this.datePicker.show({
    date: new Date(),
    mode: mode,
    allowOldDates: oldDate,
    minDate: this.getNowAndAdd(2),
    okText: this.commonServices.okText,
    cancelText: this.commonServices.cancelText,
    androidTheme: 0
  })
    .then(date => {
        this.filterDate(date);
        this.wasteServiceForm.patchValue({ [keyname]: this.date })
      },
      err => console.log("Error occurred while getting date: ", err)
    );
}

谢谢。

0 个答案:

没有答案