问题很简单,我使用momentjs来获取系统的当前日期,特别是这是返回的日期:
Sun Jan 03 2016 17:17:00 GMT+0100 (ora solare Europa occidentale)
我希望以这种格式转换此日期:
03/01/2016 17:17:00
我怎么能做到这一点?
这是我的代码:
moment(new Date()).toDate()
答案 0 :(得分:2)
您可以使用momentjs的format()功能来格式化日期。举个例子:
moment.locale('it');
moment(new Date()).format('dddd MM/DD/YYYY h:mm:ss');
这会将日期返回为"Domenica 01/03/2016 10:17:49"