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