关于js序列化时间的方法

Posted 小盆友灬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于js序列化时间的方法相关的知识,希望对你有一定的参考价值。


var time = new Date();
var otime = getMyDate(time);

//将毫秒转换成 年月日+时分秒 格式的 (1970-01-11 00:00:00)
function getMyDate(str) {
  var oDate = new Date(str),
  oYear = oDate.getFullYear(),
  oMonth = oDate.getMonth() + 1,
  oDay = oDate.getDate(),
  oHour = oDate.getHours(),
  oMin = oDate.getMinutes(),
  oSen = oDate.getSeconds(),
  oTime = oYear + ‘-‘ + getzf(oMonth) + ‘-‘ + getzf(oDay) + ‘ ‘ + getzf(oHour) + ‘:‘ + getzf(oMin) + ‘:‘ + getzf(oSen); //最后拼接时间
  return oTime;
};


//补0操作
function getzf(num) {
if(parseInt(num) < 10) {
  num = ‘0‘ + num;
}
  return num;
}























以上是关于关于js序列化时间的方法的主要内容,如果未能解决你的问题,请参考以下文章

关于JSON.parse(JSON.stringfy(object))进行深拷贝的坑~

关于护照序列化/反序列化用户中的回调函数的困惑

2019-06-12 关于微服务大数字精度丢失解决方案

关于绘制时间序列数据的正确方法的问题

关于JSON.stringify的妙用

C# 关于使用JavaScriptSerializer 序列化与返序列化的操作