-1
我收到在以下格式從PHP:momentJS的TODATE()返回無效日期
"end_date":{"date":"2017-02-17 18:52:31.000000","timezone_type":3,"timezone":"UTC"}}]
在JS/AngularJS結束我做如下:
var end_date = Lease.period_ferme[idx].end_date
$scope.frame[idx].end_date = moment(end_date).toDate()
console.log('After');
console.log($scope.frame[idx].end_date); //invalid date
時刻( 「2017年2月17日18:52:31.000000」)。TODATE() 星期五2017年2月17日18點52分31秒GMT-0500(美國東部標準時間)看起來科爾等我。 – inoabrian
爲什麼這個問題被刪除?不知道'momentJs'的Somone說我使用了錯誤的方法? – Volatil3
你是否將整個對象傳遞給moment()作爲參數?也許我不明白,但是你不應該使用'moment(end_date.date)'? –