问题组件中格式日期的问题

时间:2018-10-12 05:39:36

标签: reactjs date redux

格式化react组件中的日期。我尝试致电toLocaleDateString和其他选项,但都无济于事。我没有收到任何更改,或者错误“ ....不是函数”

日期组件采用以下格式:

  

2018-10-07T06:39:55.578686Z

1 个答案:

答案 0 :(得分:2)

您可以使用new Date()来执行此操作。您不需要moment()

let d = "2018-10-07T06:39:55.578686Z"
let date = new Date(d);
let formattedDate = date.toDateString() //Or any other methods that date supports
console.log(formattedDate);