成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專(zhuān)欄INFORMATION COLUMN

vue日期格式轉(zhuǎn)換

source / 1992人閱讀

日期格式轉(zhuǎn)換
JS:
date.js
//傳入?yún)?shù)日期和要轉(zhuǎn)換的格式
export function formatDate(date,fmt){
if(/(y+)/.test(fmt)){

fmt = fmt.replace(RegExp.$1, (date.getFullYear() + "").substr(4 -         
RegExp.$1.length));

}
let o={

    "M+":date.getMonth()+1,
    "d+":date.getDate(),
    "h+":date.getHours(),
    "m+":date.getMinutes(),
    "s+":date.getSeconds()

};
for(let k in o){

   if(new RegExp(`(${k})`).test(fmt)){
       let str=o[k]+"";
       fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? str : padLeftZero(str));
   } 

}

return fmt;  

}
function padLeftZero(str){

return ("00"+str).substr(str.length);

}

調(diào)用部分:

{{rating.rateTime | formatDate}}


import {formatDate} from "../../common/js/date";
export default{

filters :{
    formatDate(time){
        let date=new Date(time);
        return formateDate(date,"yyyy-MM-dd hh:mm");
    }
}

}

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/106583.html

相關(guān)文章

  • element-ui日期時(shí)間選擇器的日期格式化問(wèn)題

    摘要:最近在做的后臺(tái)管理頁(yè)面,其中用到了來(lái)選擇日期時(shí)間,但是在將數(shù)據(jù)傳回后臺(tái)的過(guò)程中遇到了一些令人頭疼的問(wèn)題,在此記錄一下解決方案,以免日后再次遇到。 最近在做vue+element-ui的后臺(tái)管理頁(yè)面,其中用到了DateTimePicker來(lái)選擇日期時(shí)間,但是在將數(shù)據(jù)傳回后臺(tái)的過(guò)程中遇到了一些令人頭疼的問(wèn)題,在此記錄一下解決方案,以免日后再次遇到。 showImg(https://segm...

    atinosun 評(píng)論0 收藏0
  • 開(kāi)發(fā)中遇到的問(wèn)題總結(jié)

    摘要:獲取字符串中出現(xiàn)次數(shù)最多的字符。去掉字符串中的所有空格中對(duì)象數(shù)組按對(duì)象屬性排序 VUE 1、vue——解決You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use / eslint-disable / to ign...

    wenshi11019 評(píng)論0 收藏0
  • 開(kāi)發(fā)中遇到的問(wèn)題總結(jié)

    摘要:獲取字符串中出現(xiàn)次數(shù)最多的字符。去掉字符串中的所有空格中對(duì)象數(shù)組按對(duì)象屬性排序 VUE 1、vue——解決You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use / eslint-disable / to ign...

    Yuqi 評(píng)論0 收藏0
  • js 時(shí)間戳/日期格式互轉(zhuǎn)

    摘要:時(shí)間轉(zhuǎn)時(shí)間戳當(dāng)前時(shí)間轉(zhuǎn)換毫秒指定時(shí)間轉(zhuǎn)換毫秒時(shí)間戳轉(zhuǎn)化為日期時(shí)間轉(zhuǎn)換格式時(shí)分秒時(shí)分秒時(shí)分時(shí)秒時(shí)分秒分秒時(shí)間轉(zhuǎn)換格式 時(shí)間轉(zhuǎn)時(shí)間戳 當(dāng)前時(shí)間轉(zhuǎn)換(毫秒) new Date().getTime() 指定時(shí)間轉(zhuǎn)換(毫秒) var timeDate = 2019-05-09 14:50:48; new Date(timeDate).getTime() 時(shí)間戳轉(zhuǎn)化為日期 時(shí)間轉(zhuǎn)換 --格式1時(shí)1...

    zr_hebo 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

閱讀需要支付1元查看
<