标签: javascript node.js momentjs
我想从moment()获取时间字符串,但使用toDate()函数而不是format()函数
moment()
toDate()
format()
我可以使用格式函数获取时间,但它与toDate()函数返回的日期和时间不同。
toDate(
moment().utc().toDate()
返回了Mon Aug 05 2019 17:08:08和
Mon Aug 05 2019 17:08:08
moment().utc().format('hh:mm a')
返回了11:40
11:40
我想使用11:40函数而不是toDate()函数获得format()。