标签: javascript node.js time
如何用2018-11-04T14:00:00-07:00这个日期来表达?我是从NWS API获得的。我尝试使用Date()和其他函数。
2018-11-04T14:00:00-07:00
答案 0 :(得分:1)
查看Date()上的文档。不知道要使用哪种格式,请尝试使用方法,特别是toDateString()
toDateString()
var date = new Date('2018-11-04T14:00:00-07:00'); console.log(date.toDateString());