MomentJS无效日期

时间:2018-09-14 10:15:34

标签: reactjs npm momentjs

我正在尝试将“ DD-MM-YYYY”之类的日期字符串转换为“ YYYY-MM-DD”。 不幸的是,我得到的日期无效。

  var startDate = $('.startDate').val();
  var endDate = $('.endDate').val();

  var newstartDate = moment(startDate).format( "YYYY-MM-DD");
  endDate = moment(endDate, "YYYY-MM-DD");

  console.log('startDate:',startDate)
  console.log('newstartDate:',newstartDate)
  console.log('endDate:',endDate)

enter image description here

我怎么能得到这样的输出:2018-09-14。 / 2018-08-14?

0 个答案:

没有答案