錯誤的時間考慮:新的日期()在Node.js的
[email protected]:/firma/Exotech/heart-beat/heart-beat-service# date
Mon Apr 24 17:07:52 CEST 2017
[email protected]:/firma/Exotech/heart-beat/heart-beat-service# node test.js
2017-04-24T15:07:56.271Z
[email protected]:/firma/Exotech/heart-beat/heart-beat-service# cat test.js
console.log(new Date())
[email protected]:/firma/Exotech/heart-beat/heart-beat-service#
正如你所看到的,服務器日期17:07,但新的日期()將返回15:07。如何使用服務器的日期設置更正我的Node.js?
第一個在你的本地時區,第二個是UTC。 – JohnnyHK