请注意我是react-intl的新手。我有以下日期要显示:
d1_date:" 2012-03-26" //目标显示2012年3月26日
我使用react-intl'
FormattedDate
显示日期:
<FormattedDate value={d1_date} year='numeric' month='long' day='2-digit' />
我得到以下结果:
2012年3月25日
我知道d1_date没有时间信息。我是否需要操纵d1_date以便出现虚假时间以允许真实日期反映&#34; 2012年3月26日&#34;?
答案 0 :(得分:0)
<FormattedDate value={new Date('2012-03-26')} year='numeric' month='long' day='2-digit' />
我认为它需要Date实例。