gpt4 book ai didi

javascript - 将字符串转换为实时日期时间

转载 作者:数据小太阳 更新时间:2023-10-29 04:33:24 25 4
gpt4 key购买 nike

我有 JSON 代码:

{ "time":"2015-10-20T11:20:00+02:00" }

我从脚本中读取了 JSON,表中的输出是:

2015-10-20T11:20:00+02:00

但是我希望输出等于那天及其时间。

例如:星期二 20:00(如果我的时区是 +02)

最佳答案

您可以像这样格式化日期:

var date = new Date('2015-10-20T11:20:00+02:00');
var days = ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'];
var output = days[date.getDay()] + ' ' + date.getHours() + ':' + date.getMinutes();
console.log(output);
// Tue 6:20

关于javascript - 将字符串转换为实时日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33851673/

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