当我在浏览器中使用toLocaleDateString时,它返回

n = new Date()
n.toLocaleDateString()
"2/10/2013"

但在node.js中,格式完全不同
n = new Date()
> n.toLocaleDateString()
'Sunday, February 10, 2013'

如何在node.js中获取浏览器的格式(mm/dd/yy)?

最佳答案

Date.prototype.toLocaleDateString = function () {
  var d = new Date();
  return (d.getMonth() + 1) + "/" + d.getDate() + "/" + d.getFullYear();
};

关于javascript - Node 中toLocaleDateString的日期,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14792949/

10-09 20:40