2023-06-27
js 前端 重慶 濟南
在JavaScript中,可以使用多種方法將時間戳轉換為字符串。時間戳是一個表示自1970年1月1日以來經過的毫秒數的數字。下面介紹幾種常用的時間戳轉字符串的方法:
方法一:使用Date對象的toLocaleString()方法
const timestamp = 1624939200000; // 假設時間戳為 2021-06-29 00:00:00
const date = new Date(timestamp);
const dateString = date.toLocaleString();
console.log(dateString); // 輸出結果:2021/6/29 上午12:00:00
方法二:使用Date對象的getFullYear()、getMonth()、getDate()等方法手動構建字符串
const timestamp = 1624939200000; // 假設時間戳為 2021-06-29 00:00:00
const date = new Date(timestamp);
const year = date.getFullYear();
const month = date.getMonth() + 1;
const day = date.getDate();
const dateString = `${year}-${month < 10 ? '0' + month : month}-${day < 10 ? '0' + day : day}`;
console.log(dateString); // 輸出結果:2021-06-29
方法三:使用第三方庫如Moment.js進行時間格式化
如果需要更復雜的時間格式化操作,可以使用第三方庫Moment.js。Moment.js提供了豐富的時間處理方法,可以輕松地進行時間戳轉字符串的操作。
首先,需要在項目中引入Moment.js庫??梢酝ㄟ^CDN方式引入:
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"></script>
然后,使用Moment.js進行時間格式化:
const timestamp = 1624939200000; // 假設時間戳為 2021-06-29 00:00:00
const dateString = moment(timestamp).format('YYYY-MM-DD');
console.log(dateString); // 輸出結果:2021-06-29
以上是幾種常用的時間戳轉字符串的方法。根據需求選擇合適的方法,可以輕松地將時間戳轉換為期望的字符串格式。
開班時間:2021-04-12(深圳)
開班盛況開班時間:2021-05-17(北京)
開班盛況開班時間:2021-03-22(杭州)
開班盛況開班時間:2021-04-26(北京)
開班盛況開班時間:2021-05-10(北京)
開班盛況開班時間:2021-02-22(北京)
開班盛況開班時間:2021-07-12(北京)
預約報名開班時間:2020-09-21(上海)
開班盛況開班時間:2021-07-12(北京)
預約報名開班時間:2019-07-22(北京)
開班盛況Copyright 2011-2023 北京千鋒互聯科技有限公司 .All Right 京ICP備12003911號-5 京公網安備 11010802035720號