使用OwlDateTime获取角度为6的datetimepicker时,我面临的日期格式为issus。
我的浏览器语言是法语,因此默认显示的日期是'dd/mm/yy hh:mm:ss'
我需要为使用任何语言的任何浏览器设置全局格式。 阅读本文:[https://danielykpan.github.io/date-time-picker/#locale-formats],我发现我需要使用下面所示的const:
export const MY_NATIVE_FORMATS = {
fullPickerInput: 'YYYY-MM-DD HH:mm',
datePickerInput: {year: 'numeric', month: 'numeric', day: 'numeric', hour12: false},
timePickerInput: {hour: 'numeric', minute: 'numeric', hour12: false},
monthYearLabel: {year: 'numeric', month: 'short'},
dateA11yLabel: {year: 'numeric', month: 'long', day: 'numeric'},
monthYearA11yLabel: {year: 'numeric', month: 'long'},
};
但这不起作用(是的,我将{provide: OWL_DATE_TIME_FORMATS, useValue: MY_NATIVE_FORMATS},
添加为提供者ander @componenet。
我需要显示的日期为英文日期“ yyyy-mm-dd hh:mm:ss” 谢谢。