js 中将 ‘Thu, 20 Feb 2020 14:21:15 GMT’ 转成 ‘yyyy-mm-dd hh:dd:ss’

 

将 ‘Thu, 20 Feb 2020 14:21:15 GMT’ 转成 ‘yyyy-mm-dd hh:dd:ss

图一:

js 中将 ‘Thu, 20 Feb 2020 14:21:15 GMT’ 转成 ‘yyyy-mm-dd hh:dd:ss’

 

图二:

 js 中将 ‘Thu, 20 Feb 2020 14:21:15 GMT’ 转成 ‘yyyy-mm-dd hh:dd:ss’

 

 代码如下:

1 update_time = 'Thu, 20 Feb 2020 14:21:15 GMT';
2 var date_time = new Date(update_time)
3 var update_time_new = date_time.getFullYear() + '-' + (date_time.getMonth() + 1) + '-' + date_time.getDate() + ' ' + date_time.getHours() + ':' + date_time.getMinutes() + ':' + date_time.getSeconds();      

 

上一篇:Python Crash Course读书笔记 - 第3章:INTRODUCING LISTS


下一篇:CentOS 下的 Docker 配置仓库和安装mysql5.7