我有时间以某种格式来自服务器,例如时间(1473286826319)
。使用MomentJS库
moment(1473286826319).format()
// output 2016-09-07T16:20:26-06:00 i.e sep 7 2016
但是,当我使用自定义格式样式时,如下所示
moment(1473286826319).format('dddd, MMMM d, YYYY, h:mm A');
// output Wednesday, September 3, 2016, 4:20 PM
我的日期从Sept 7
返回到Sept 3
,其余数据准确无误。有什么我做错了吗?