gpt4 book ai didi

javascript toISOString 返回不正确的日期问题

转载 作者:行者123 更新时间:2023-11-30 20:31:45 24 4
gpt4 key购买 nike

toISOString 方法返回不正确的日期。

 // Input 
var a = new Date("June 08, 2018");
a.toISOString().slice(0, 10);

// Output
"2018-06-07"

// Expected output
"2018-06-08"

最佳答案

在日期值的末尾使用 Z。这将忽略 ISO 时区转换,它会根据您的本地时间为您提供值。

var a = new Date("June 08, 2018 Z");
var res = a.toISOString().slice(0, 10);
console.log(res);

关于javascript toISOString 返回不正确的日期问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50266980/

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