亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術(shù)文章
文章詳情頁

JS時間戳轉(zhuǎn)換方式示例詳解

瀏覽:68日期:2022-06-09 17:13:19
目錄
  • 前言
  • 1、js 時間戳轉(zhuǎn)日期(可直接復(fù)制)
  • 2、在main.js中創(chuàng)建過濾器
  • 3、day.js(鏈接直達)

前言

在js中將時間戳轉(zhuǎn)換為常用的時間格式,有三種主要的方式
1、使用JS中已有的函數(shù),例如getFullYear(),getMonth()等,將時間戳直接轉(zhuǎn)換成對應(yīng)的年月;
2、創(chuàng)建時間過濾器,在其他的頁面中直接調(diào)用該過濾器,轉(zhuǎn)換時間戳;
3、使用day.js,將時間戳轉(zhuǎn)換成常用的時間寫法
4、本文以vue2和vue3兩個后臺管理系統(tǒng)中的下單時間為例,將原本的時間戳轉(zhuǎn)換為年月日的形式,其中vue2使用js和element ui,vue3使用TS和element-plus

1、js 時間戳轉(zhuǎn)日期(可直接復(fù)制)

    // 時間戳     let timestamp = 1662537367    // 此處時間戳以毫秒為單位    let date = new Date(parseInt(timestamp) * 1000);    let Year = date.getFullYear();    let Moth = (date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1);    let Day = (date.getDate() < 10 ? "0" + date.getDate() : date.getDate());    let Hour = (date.getHours() < 10 ? "0" + date.getHours() : date.getHours());    let Minute = (date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes());    let Sechond = (date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds());    let  GMT =  Year + "-" + Moth + "-" + Day + "   "+ Hour +":"+ Minute  + ":" + Sechond;    console.log(GMT)  // 2022-09-07 15:56:07

附加

let nowTime = new Date().valueOf();//時間戳console.log(nowTime) // 獲取當前時間的時間戳

2、在main.js中創(chuàng)建過濾器

示例:后臺管理系統(tǒng),vue2 + JS + element ui,將下單時間的時間戳轉(zhuǎn)換為年月日的形式

(1)main.js中,創(chuàng)建過濾器將其掛載到vue上

注意:我這邊后臺返回的數(shù)據(jù)需要進行單位換算,所以originVal * 1000,具體情況具體分析,不同單位的數(shù)據(jù)請自行調(diào)整

import Vue from "vue"http:// 創(chuàng)建過濾器,將秒數(shù)過濾為年月日,時分秒,傳參值originVal為毫秒Vue.filter("dateFormat", function(originVal){  // 先把傳參毫秒轉(zhuǎn)化為new Date()  const dt = new Date(originVal * 1000)  const y = dt.getFullYear()  // 月份是從0開始,需要+1  // +""是把數(shù)字轉(zhuǎn)化為字符串,padStart(2,"0")是把字符串設(shè)置為2位數(shù),不足2位則在開頭加"0"  const m = (dt.getMonth() + 1 + "").padStart(2, "0")  const d = (dt.getDate() + "").padStart(2, "0")  return `${y}-${m}-$wyw2q2k`})

(2)頁面中具體使用

<el-table :data="orderList" border stripe>	<el-table-column label="下單時間" prop="create_time">		<template slot-scope="scope">			{{scope.row.create_time | dateFormat}}		</template>	</el-table-column></el-table>

3、day.js(鏈接直達)

(1)三種安裝方式任選其一

npm install dayjscnpm install dayjs -Syarn add dayjs

(2)頁面中具體使用

示例:后臺管理系統(tǒng),vue3 + TS + element-plus,將下單時間的時間戳轉(zhuǎn)換為年月日的形式
使用前:

使用后:

① html部分

npm install dayjscnpm install dayjs -Syarn add dayjs

②獲取到的數(shù)據(jù)

③TS部分

對拿到的數(shù)據(jù)中的創(chuàng)建時間進行轉(zhuǎn)換,其中dayjs()中攜帶需要轉(zhuǎn)換的時間戳參數(shù),format()中攜帶所期待轉(zhuǎn)換成的形式

// 引入import { dayjs } from "element-plus";interface IOrderList {  order_number: string; // 訂單編號  create_time: number; // 下單時間}const orderList = reactive<IOrderList[]>([]);// 獲取訂單數(shù)據(jù)const getOrderList = async () => {  orderList.length = 0;  let orders = await ordersAPI(pageInfo.value);// 對 orders.data.goods進行遍歷,dayjs()中攜帶需要轉(zhuǎn)換的時間戳參數(shù),format()中攜帶所期待轉(zhuǎn)換成的形式  orders.data.goods.forEach((el: any) => {    el.create_time = dayjs(el.create_time * 1000).format("YYYY-MM-DD");  });  orderList.push(...orders.data.goods);};getOrderList();

到此這篇關(guān)于JS時間戳轉(zhuǎn)換方式的文章就介紹到這了,更多相關(guān)js時間戳轉(zhuǎn)換內(nèi)容請搜索以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持!

標簽: JavaScript
主站蜘蛛池模板: 国产亚洲一区二区在线观看 | 国产精品久久久久久影院 | 国产日韩欧美一区二区 | 91国内视频 | 真人一级一级特黄高清毛片 | 国内精品视频 | 亚洲制服一区 | 国产91av视频在线观看 | 久久精品国产72国产精福利 | 欧美aaaaa一级毛片在线 | 精品国产人成在线 | 免费国外性视频网站 | 国产亚洲精品视频中文字幕 | 国精视频一区二区视频 | 国产精品亚洲精品日韩己满十八小 | 日韩亚洲欧美综合 | 免费a级| 国产高清区 | 一级做a爰片久久毛片图片 一级做a爰片久久毛片看看 | 国产欧美日韩视频在线观看一区二区 | 99j久久精品久久久久久 | 亚洲看片网 | 一级片黄色片 | 我想看黄色一级片 | 自拍国内 | 宅男午夜剧场 | 看一级毛片 | 九九热精品视频在线播放 | 瑟瑟久久 | 成人午夜网 | 一级免费黄色片 | 男女配种超爽免费视频 | 欧美黄色大片免费看 | 国产精品视频一区二区三区 | 欧美日韩中文亚洲v在线综合 | 亚洲欧美日韩久久一区 | 性生大片一级毛片免费观看 | 国产片a| 国产资源在线视频 | a级情欲视频免费观看 | 99久久综合给久久精品 |