vue利用Moment插件格式化時間的實例代碼

moment是一款多語言支持的日期處理類庫, 在vue中如何使用呢?首先附上官網地址:http://momentjs.cn/, 畢竟查找api才是學習正途!

使用npm命令安裝moment

npm install moment --save

在main.js文件裡引用moment

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
import Moment from 'moment'

// 定義全局時間戳過濾器
Vue.filter('formatDate', function(value) {
  return Moment(value).format('YYYY-MM-DD HH:mm:ss')
})

Vue.config.productionTip = false

/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  components: { App },
  template: '<App/>'
})

在組件裡使用

<div class="time">{{item.rateTime | formatDate}}</div>

常用的一些日期格式化方法

日期格式化

moment().format('MMMM Do YYYY, h:mm:ss a'); // 四月 16日 2019, 12:24:48 中午
moment().format('dddd');                    // 星期二
moment().format("MMM Do YY");               // 4月 16日 19
moment().format('YYYY [escaped] YYYY');     // 2019 escaped 2019
moment().format();                          // 2019-04-16T12:24:48+08:00

相對時間

moment("20111031", "YYYYMMDD").fromNow(); // 7 年前
moment("20120620", "YYYYMMDD").fromNow(); // 7 年前
moment().startOf('day').fromNow();        // 12 小時前
moment().endOf('day').fromNow();          // 12 小時內
moment().startOf('hour').fromNow();       // 28 分鐘前

日歷時間

moment().subtract(10, 'days').calendar(); // 2019年4月6日
moment().subtract(6, 'days').calendar();  // 上周三中午12點28
moment().subtract(3, 'days').calendar();  // 上周六中午12點28
moment().subtract(1, 'days').calendar();  // 昨天中午12點28分
moment().calendar();                      // 今天中午12點28分
moment().add(1, 'days').calendar();       // 明天中午12點28分
moment().add(3, 'days').calendar();       // 本周五中午12點28
moment().add(10, 'days').calendar();      // 2019年4月26日

多語言支持

moment().format('L');    // 2019-04-16
moment().format('l');    // 2019-04-16
moment().format('LL');   // 2019年4月16日
moment().format('ll');   // 2019年4月16日
moment().format('LLL');  // 2019年4月16日中午12點28分
moment().format('lll');  // 2019年4月16日中午12點28分
moment().format('LLLL'); // 2019年4月16日星期二中午12點28分
moment().format('llll'); // 2019年4月16日星期二中午12點28分

說明文檔

格式代碼 說明 返回值
YYYY 四位數字完整表示的年份 如:1999 或 2019
M 數字表示的月份,沒有前導零 1 ~ 12
MM 數字表示的月份,沒有前導零 01 ~ 12
MMM 三個字母縮寫表示的月份 一月 ~ 十二月
MMMM 數字表示的月份,沒有前導零 一月 ~ 十二月
M 月份,完整的文本格式 1 ~ 12
D 月份中的第幾天,沒有前導零 1 ~ 31
DD 月份中的第幾天,有前導零 01 ~ 31
d 星期中的第幾天,數字表示 0 ~ 6,0 表示周日,6 表示周六
ddd 三個字母表示星期中的第幾天 星期日 ~ 星期六
dddd 星期幾,完整的星期文本 星期日 ~ 星期六
HH 小時,24小時制,有前導零 00 ~ 23
H 小時,24小時制,無前導零 0 ~ 23
hh 小時,12小時制,有前導零 00 ~ 12
h 小時,12小時制,無前導零 0 ~ 12
mm 分鐘,有前導零 00 ~ 59
m 分鐘,沒有前導零 0 ~ 59
ss 秒,有前導零 01 ~ 59
s 秒,無前導零 1 ~ 59

總結

到此這篇關於vue利用Moment插件格式化時間的文章就介紹到這瞭,更多相關vue用Moment格式化時間內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: