1

FormattedDate 的默认格式在哪里设置?

现在我的日期显示当月的一位数:2017 年 3 月 9 日

FormattedDate value={new Date('2017-03-09')}

这可以在 IntlProvider 中设置吗?

4

1 回答 1

0

您可以通过format道具设置格式:

props: DateTimeFormatOptions & {
    value: any,
    format?: string,
    children?: (formattedDate: string) => ReactElement,
}

取自文档

于 2017-05-13T22:29:08.857 回答