gpt4 book ai didi

c# - 将日期时间从 json 转换为可读格式

转载 作者:行者123 更新时间:2023-11-28 16:12:47 26 4
gpt4 key购买 nike

除了其他属性之外,我还得到了 DateTime 属性,该属性在 View 上呈现为

/Date(1346997005000)/

我应该将其转换为可读格式,如 dd.mm.yy

最佳答案

var dateString = "/Date(1346997005000)/";
var dx = new Date(parseInt(dateString.substr(6)));

var dd = dx.getDate();
var mm = dx.getMonth() + 1;
var yy = dx.getFullYear();

if (dd <= 9) {
dd = "0" + dd;
}

if (mm <= 9) {
mm = "0" + mm;
}

var displayDate = dd + "." + mm + "." + yy;

使用显示日期。如果您可以访问众多 JavaScript 日期库之一(例如 Moment.js),您应该能够将 dx 传递到函数中并使用一行代码获取显示字符串。这将是一个更好的解决方案。

关于c# - 将日期时间从 json 转换为可读格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12419405/

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