gpt4 book ai didi

javascript - toLocaleDateString 使用相同的语言是不同的

转载 作者:太空宇宙 更新时间:2023-11-04 02:52:50 28 4
gpt4 key购买 nike

我正在使用此代码:

date.toLocaleDateString('pt-BR')
  • 在我的 Chrome 浏览器中,结果是:2016 年 9 月 13 日
  • 当我运行测试时本地:2016-09-13
  • 当我在 Circle CI 中运行测试时:2016 年 9 月 13 日

发生了什么?

Ps.:我使用 Jest 和 JSDom 进行测试。

最佳答案

使用toLocaleDateString options用于设置固定格式。

var date = new Date();
var options = { year: 'numeric', month: '2-digit', day: '2-digit' };
console.log(date.toLocaleDateString('pt-BR', options));

关于javascript - toLocaleDateString 使用相同的语言是不同的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41829488/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com