我正在使用帮助矩js将传入日期2016-11-10T21:59:53.000+0000格式化为:

  myService.getDate(id)
       .then(function (data) {
           data.occuredDate = moment.utc(new Date(data.occuredDate)).format('DD MMM YYYY h:mm a');
       };


输出结果如下:10 Nov 2016 10:00 pm

现在,我正在尝试将此日期解析回字符串,但是很遗憾,我的尝试没有成功

  console.log(new Date(obj.occuredDate))
  console.log(new Date(obj.occuredDate).toString())
  console.log(Date.parse(obj.occuredDate))
  console.log(new Date(Date.parse(obj.occuredDate)))
  console.log(new Date(Date.parse(obj.occuredDate)).toString())

  Invalid Date
  Invalid Date
  NaN
  Invalid Date
  Invalid Date


谁能解释我在做什么错?

提前致谢。

最佳答案

解析非标准格式时,只需指定格式。然后使用moment的toDate()方法获得一个普通的js Date对象:

moment.utc(obj.occuredDate, 'DD MMM YYYY h:mm a').toDate();


侧面

使用moment.utc(new Date(data.occuredDate))根本没有意义。只需解析字符串。

09-27 19:31