相关文章推荐
多情的大象  ·  Spring ...·  2 月前    · 
喝醉的鸡蛋面  ·  将 Microsoft Access ...·  1 年前    · 
爱玩的感冒药  ·  ASP.NET Web Forms – ...·  1 年前    · 
$(function(){ // 获取时间戳 时间戳为10位需*1000,时间戳为13位的话则不用 var nowDate = new Date().getTime(); //1564624526889 // 调用封装好的时间转换方法 timestampToTime(nowDate); function timestampToTime(timestamp) { var date = new Date(timestamp); var Y = date.getFullYear() + '-'; var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-'; var D = (date.getDate() < 10 ? '0'+date.getDate() : date.getDate()) + ' '; var h = (date.getHours() < 10 ? '0'+date.getHours() : date.getHours()) + ':'; var m = (date.getMinutes() < 10 ? '0'+date.getMinutes() : date.getMinutes()) + ':'; var s = (date.getSeconds() < 10 ? '0'+date.getSeconds() : date.getSeconds()); strDate = Y+M+D+h+m+s; return strDate; console.log(strDate) //2019-08-01 09:55:26 //在后端实体类的date类型加注解 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")