gpt4 book ai didi

迄今为止的 Javascript 时间戳

转载 作者:行者123 更新时间:2023-11-29 22:01:11 25 4
gpt4 key购买 nike

谁能帮我解决这个问题,这让我发疯。我是 Javascript 的初学者,我现在第一次遇到日期问题。

我已经问过了,但是没有人回答我: json with parsed time or timestamp to amchartss

基本上我有这个 XHR 调用。

 getJSON = function(url) {
var xhr = new XMLHttpRequest();
xhr.open('get', url, true);
xhr.responseType = 'json';

xhr.onload = function() {
var status = xhr.status;
if (status == 200) {
chartLoad(xhr.response);
console.log(xhr.response);
} else {
console.log("oh shit");
}
};
xhr.send();
};

我在此处收到带有时间戳的 JSON 文件作为响应,我如何将所有时间戳转换为日期 YYYY-MM-DD HH:mm。

之前我直接在服务器上转换日期字符串而不是时间戳,这样我不需要在客户端进行转换,但这种方式只适用于 Chrome。

帮助!

最佳答案

尽管 JavaScript 中没有原生的 date.format 方法,但您可以自行开发一次性实现。在你的情况下是这样的:

var newDate = new Date(myTimeStamp);

var outDate = newDate.getFullYear()+"-"+(newDate.getMonth()+1)+"-"+newDate.getDate()+" "+newDate.getHours()+":"+newDate.getMinutes();

对于今天的日期,将输出:2014-5-15 16:7注意 getMonth 的 +1 从 0 开始计数如果你想确保值总是两位数(即一位数前导零),可能需要额外的一点摆弄

在 xhr 加载处理程序中执行此操作可能是这样的:

           xhr.onload = function (e) {
if (this.status == 200) {
var blob = this.response;

var img = document.createElement('img');
img.onload = function (e) {
window.URL.revokeObjectURL(img.src); // Clean up after yourself.
};
img.src = window.URL.createObjectURL(blob);
document.body.appendChild(img);

var myTimeStamp = e.timeStamp;
//I would probably want to put this date code
//in a separate function somewhere
var newDate = new Date(myTimeStamp);
var outDate = newDate.getFullYear()+"-"+(newDate.getMonth()+1)+"-"+newDate.getDate()+" "+newDate.getHours()+":"+newDate.getMinutes();
var div = document.createElement('div');
div.innerHTML = outDate;
document.body.appendChild(div);
}
};

关于迄今为止的 Javascript 时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23681273/

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