// 将时间戳转换成日期格式: function timestampToTime(timestamp) { var date = new Date(timestamp);//时间戳为10位需*1000,时间戳为13位的话不需乘1000 var Y = date.getFullYear() + '年'; var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '月'; var D = (dat
var time = 1514457627; alert(getDate(time)); function getDate(tm){ var tt=new Date(parseInt(tm) * 1000).toLocaleString().replace(/:\d{1,2}$/,' '); return tt; } 就能转换成正常时间了
保留原来的毫秒值 select extract(epoch from '03:21:06.678'::time); 这个extract(epoch from )函数得到的是时间是秒单位,如果需要毫秒值就直接乘以1000: select extract(epoch from now())*1000; 去掉原来的毫秒值 向下取整函数floor() select floor(extract(epoch from '03:21:06.678'::time)); 向上取整函数ceil()或ceiling(
// UTC 时间转化为北京时间 function utc2beijing(utcTime) { var T_pos = utcTime.indexOf('T'); var Z_pos = utcTime.indexOf('Z'); var year_month_day = utcTime.substr(0,T_pos); var hour_minute_second = utcTime.substr(T_pos+1,Z_pos-T_pos-1); var new_datetime = year