joson返回数据库的时间格式为/Date(1332919782070)/,在前台用js怎么转换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了joson返回数据库的时间格式为/Date(1332919782070)/,在前台用js怎么转换相关的知识,希望对你有一定的参考价值。

原理是取中间的毫秒数,再转换成js的Date类型
function ChangeDateFormat(val)
if (val != null)
var date = new Date(parseInt(val.replace("/Date(", "").replace(")/", ""), 10));
//月份为0-11,所以+1,月份小于10时补个0
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;


return "";
参考技术A 请问如何得到Date 型 或得到它 的毫秒数, new Date("2011-07-29 12:00:00") ,EnWrpf追问

用ajax无刷新分页的,服务器返回的时间 就是这个/Date(1332919782070)/

Map格式-joson格式

mapStr:

{CHAR=UTF-8, DATA=eyJNRVJDSEFOVCI6IjEwMDEiLCJWRVJTSU9OIjoiMS4wLjAiLCJUUkFERSI6IjIwMTgwNjEyMTY1NSIsIlRZUEUiOiJRIn0=, SIGN=5b99ce3dc8ed002fc5aa10800cae221a}

 

jsonStr:

{"MERCHANT":"1001","VERSION":"1.0.0","TRADE":"201806121655","TYPE":"Q"}

以上是关于joson返回数据库的时间格式为/Date(1332919782070)/,在前台用js怎么转换的主要内容,如果未能解决你的问题,请参考以下文章

json格式数据 "Time":"\/Date(1341417600000+0800)\/" 时间转换

json返回数据库的时间格式为/Date(1477294037000)/,怎样在前台进行格式化转换

json返回数据库的时间格式为/Date(1477294037000)/,怎样在前台进行格式化转换

jquery easyui中日历控件(easyui-datebox) 现实的时间格式为:06/27/2013 如图:

时间格式转换—将后台返回的/Date(1448954018000)/格式转换为正常的时间格式

excel表格时间格式20061112怎样批量修改为2006/11/12?