gpt4 book ai didi

javascript - 无法将字符串格式化为日期

转载 作者:行者123 更新时间:2023-12-03 04:44:02 25 4
gpt4 key购买 nike

当我尝试将字符串值转换为日期时,收到错误消息“无效日期”

timestamp : string = "2017:03:22 08:45:22";
.
.
let time = new Date(timestamp);
console.log("Time: ",time); //here I get Time: Invalid date

最佳答案

由于您的字符串必须采用 ISO 日期格式,因此您可以像下面的代码一样更改它:

let timestamp : string = "2017:03:22 08:45:22";

let timestampISO : string = timestamp.replace(':','-').replace(':','-').replace(' ','T');

let time = new Date(timestampISO);

console.log("Time: ",time);

关于javascript - 无法将字符串格式化为日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42947680/

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