设置格式React-Intl FormattedDate

时间:2017-05-13 21:27:33

标签: reactjs datetime react-redux react-intl

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

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

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

可以在IntlProvider中设置吗?

1 个答案:

答案 0 :(得分:0)

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

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

取自Docs