js中将时间戳转化成YYYY-MM-DD HH:mm:ss的3种实现办法
作者:hzxOnlineOk
最近开发中需要和后端进日期和时间传值,前后端约定为时间戳的格式,但是前端展示需要展示成年-月-日的格式,就需要进行日期和时间转换格式,这篇文章主要给大家介绍了关于js中将时间戳转化成YYYY-MM-DD HH:mm:ss的3种实现办法,需要的朋友可以参考下
方法一:dayjs(最推荐)
npm install dayjs # 或者 yarn add dayjs
const dayjs = require('dayjs'); // 假设你有一个时间戳 const timestamp = 1650000000000; // 示例时间戳 // 使用dayjs转换时间戳 const formattedDate = dayjs(timestamp).format('YYYY-MM-DD HH:mm:ss'); console.log(formattedDate); // 输出转换后的日期和时间
方法二:moment.js
npm install moment
// 引入Moment.js库 const moment = require('moment'); // 假设你有一个时间戳 const timestamp = 1609459200000; // 例如:2021年1月1日 00:00:00的时间戳 // 使用Moment.js转换时间戳为YYYYMMDD HH:mm:ss格式 const formattedDate = moment(timestamp).format('YYYYMMDD HH:mm:ss'); console.log(formattedDate); // 输出:20210101 00:00:00
方法三:原生js(不推荐)
function timestampToYMDHMS(timestamp) { const date = new Date(timestamp); const year = date.getUTCFullYear(); const month = ('0' + (date.getUTCMonth() + 1)).slice(-2); // 月份是从0开始的 const day = ('0' + date.getUTCDate()).slice(-2); const hours = ('0' + date.getUTCHours()).slice(-2); const minutes = ('0' + date.getUTCMinutes()).slice(-2); const seconds = ('0' + date.getUTCSeconds()).slice(-2); return `${year}${month}${day} ${hours}:${minutes}:${seconds}`; } // 示例: const timestamp = Date.now(); // 或者任何其他的时间戳 const formattedDate = timestampToYMDHMS(timestamp); console.log(formattedDate); // 输出格式如:20230310 12:34:56
附:判断日期是否已过
代码如下(示例):
var timestampNow = Date.parse(new Date());//获取当前时间戳 if(timestamp-timestampNow<0){//根据时间戳的差判断 this.setData({ isPast:true }) }else{ this.setData({ isPast:false }) }
总结
到此这篇关于js中将时间戳转化成YYYY-MM-DD HH:mm:ss的3种实现办法的文章就介绍到这了,更多相关js时间戳转化YYYY-MM-DD HH:mm:ss内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!