您的当前位置:首页正文

mysql查询时间出来数字怎么办

2020-11-27 来源:筏尚旅游网

推荐:《mysql视频教程》

数据库查询出来的时间在前端显示成了一串数字?

解决方法:

之前遇到一个问题,从数据库查询出来的时间在前端显示成了数字。我用的数据库是mysql,我的解决办法是在前端转换了一下,代码如下:

查询出来的一串数字是时间戳,只需要在前台将时间戳转换为时间就行了。

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;
 }

需要注意的是查询出的时间戳是10位的还是13位的!!!

显示全文