Js中将Long转换成日期格式的实现方法
网络 2018-08-16 1138
主要用于将数据库中日期用long表示,转换成YYYY-MM-DD格式或YYYY-MM-DD HH:mm:ss格式
若显示为YYYY-MM-DD HH:mm:ss格式,调用如下方法:
1 | datetimeFormat(longTypeDate); |
若显示为YYYY-MM-DD格式,调用如下方法:
1 | dateFormat(longTypeDate); |
Js中具体方法如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | /* * 时间格式化工具 * 把Long类型的1527672756454日期还原yyyy-MM-dd 00:00:00格式日期 */ function datetimeFormat(longTypeDate){ var dateTypeDate = ""; var date = new Date(); date.setTime(longTypeDate); dateTypeDate += date.getFullYear(); //年 dateTypeDate += "-" + getMonth(date); //月 dateTypeDate += "-" + getDay(date); //日 dateTypeDate += " " + getHours(date); //时 dateTypeDate += ":" + getMinutes(date); //分 dateTypeDate += ":" + getSeconds(date); //分 return dateTypeDate; } /* * 时间格式化工具 * 把Long类型的1527672756454日期还原yyyy-MM-dd格式日期 */ function dateFormat(longTypeDate){ var dateTypeDate = ""; var date = new Date(); date.setTime(longTypeDate); dateTypeDate += date.getFullYear(); //年 dateTypeDate += "-" + getMonth(date); //月 dateTypeDate += "-" + getDay(date); //日 return dateTypeDate; } //返回 01-12 的月份值 function getMonth(date){ var month = ""; month = date.getMonth() + 1; //getMonth()得到的月份是0-11 if(month<10){ month = "0" + month; } return month; } //返回01-30的日期 function getDay(date){ var day = ""; day = date.getDate(); if(day<10){ day = "0" + day; } return day; } //小时 function getHours(date){ var hours = ""; hours = date.getHours(); if(hours<10){ hours = "0" + hours; } return hours; } //分 function getMinutes(date){ var minute = ""; minute = date.getMinutes(); if(minute<10){ minute = "0" + minute; } return minute; } //秒 function getSeconds(date){ var second = ""; second = date.getSeconds(); if(second<10){ second = "0" + second; } return second; } |
效果图如下:
数据库中日期如图所示: 页面中日期如图所示:
总结
以上所述是小编给大家介绍的Js中将Long转换成日期格式的实现方法,希望对大家有所帮助