博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
格式化Json传递的日期
阅读量:4980 次
发布时间:2019-06-12

本文共 699 字,大约阅读时间需要 2 分钟。

//自定义日期类型转化函数ChangeDateFormat,将//Date(1294499956278+0800)//形式的函数转化为2014-5-2形式

function ChangeDateFormat(jsondate) {
jsondate = jsondate.replace("/Date(", "").replace(")/", "");
if (jsondate.indexOf("+") > 0) {
jsondate = jsondate.substring(0, jsondate.indexOf("+"));
} else if (jsondate.indexOf("-") > 0) {
jsondate = jsondate.substring(0, jsondate.indexOf("-"));
}
var date = new Date(parseInt(jsondate, 10));
var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
return date.getFullYear() + "-" + month + "-" + currentDate;
}

转载于:https://www.cnblogs.com/tong775131501/p/4107508.html

你可能感兴趣的文章
淘宝数据魔方技术架构解析
查看>>
Quartz入门例子简介 从入门到菜鸟(三)
查看>>
3.Servlet实例
查看>>
Shell test命令
查看>>
人生旅程、人生结果
查看>>
2-10 就业课(2.0)-oozie:2、介绍和安装1
查看>>
第二个冲刺 6.3 学术诚信与职业道德
查看>>
[ CodeVS冲杯之路 ] P1169
查看>>
每日一九度之 题目1033:继续xxx定律
查看>>
在PHP语言中使用JSON和将json还原成数组
查看>>
pythonのsqlalchemy外键关联查询
查看>>
密钥管理和安全关联
查看>>
冲刺二阶段-个人总结10
查看>>
PostgreSQL常用SQL
查看>>
SQL学习笔记2:SQL基础(DML)
查看>>
C语言 经典编程100题
查看>>
UVa 113 - Power of Cryptography
查看>>
浅谈vue $mount()
查看>>
Java 集合系列 11 hashmap 和 hashtable 的区别
查看>>
Android中dp和px之间进行转换
查看>>