js中:
function timestampToTime(timestamp) { var date = new Date(timestamp);//时间戳为10位需*1000,时间戳为13位的话不需乘1000 Y = date.getFullYear() + '-'; M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-'; D = date.getDate() + ' '; h = date.getHours() + ':'; m = date.getMinutes() + ':'; s = date.getSeconds(); return Y+M+D; }
在得到时间后做转换处理
for( var i = 0; i < data.result.list.length; i++ ){ data.result.list[i].timeCreate = timestampToTime(data.result.list[i].timeCreate); data.result.list[i].timeUpdate = timestampToTime(data.result.list[i].timeUpdate); }