本文介绍了节点中的日期toLocaleDateString的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

When I use toLocaleDateString in browser it returns

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

但在node.js格式完全不同

but in node.js the format is completely different

n = new Date()
> n.toLocaleDateString()
'Sunday, February 10, 2013'

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

How to get the browser's format (mm/dd/yy) in node.js?

推荐答案

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

这篇关于节点中的日期toLocaleDateString的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 13:18