反应国际日期格式以获取特定的日期格式

时间:2019-12-12 08:06:57

标签: javascript reactjs date react-intl intldateformatter

我正在使用React Intl Date格式化API

https://github.com/formatjs/react-intl/blob/master/docs/API.md#date-formatting-apis

我想使用这种格式的日期

August 7, 2019

基本上,国际日期没有以下格式。这就是我尝试过的

<FormattedDate
  year: 'numeric',
  day: '2-digit',
  month: 'long',
/>

如何获取此格式-August 7, 2019格式以在React Intl格式化日期API中使用

1 个答案:

答案 0 :(得分:0)

您可以这样做

<FormattedDate
  value={new Date()}
  year="numeric"
  month="long"
  day="2-digit"
/>