为FormattedDate设置默认格式在哪里?
现在我的日期显示了本月的一位数:2017年3月9日
FormattedDate值= {new Date('2017-03-09')}
可以在IntlProvider中设置吗?
答案 0 :(得分:0)
您可以通过format
道具设置格式:
props: DateTimeFormatOptions & {
value: any,
format?: string,
children?: (formattedDate: string) => ReactElement,
}
取自Docs