我需要使用 react-intl 使用不同的分隔符显示日期。到目前为止我有这个
const date = new Date("2016-08-12T16:59:02.013+02:00");
...
return() {
render(
<FormattedDate
value={date}
year='numeric'
month='numeric'
day='numeric'
/>
)
}
这会呈现日期8/12/2016,但我需要像这样显示8-12-2016。FormattedDate 如何做到这一点?还是我应该使用不同的方法?