toLocaleString()没有在node.js中返回正确的日期格式

时间:2014-09-05 16:19:18

标签: node.js google-chrome timestamp

在Chrome控制台中:
(new Date(Date.now())).toLocaleString()返回"9/5/2014 9:43:08 PM"
new Date(Date.now())返回'Fri Sep 05 2014 21:43:08 GMT+0530 (IST)'

在node.js REPL / app中:
(new Date(Date.now())).toLocaleString()返回'Fri Sep 05 2014 21:43:18 GMT+0530 (IST)',与运行new Date(Date.now())

相同

为了获得与chrome相同的输出格式,我需要做些什么改变。

0 个答案:

没有答案