您好,登錄后才能下訂單哦!
本文實例講述了vue實現的封裝全局filter并統一管理操作。分享給大家供大家參考,具體如下:
在前后端分離的項目中,經常會有后臺返回的數據需要進過處理才能顯示到頁面上的場景。
使用最多的場景就是日期和時間的處理,后臺一般返回的都是時間戳,那么我們就要對時間戳進行處理。
下面就拿封裝全局的處理日期和時間的 filter 來展示如何 vue 如何封裝全局 filter 并統一處理。
在 src 目錄下新建 filters 目錄用來專門存放全局過濾器,如果項目的過濾器過多,那么就要按類型分類。
我司的項目需要前臺處理的數據不是太多,那么就在 filters 目錄下新建一個 index.js 來存放所有的過濾器就足夠了。
index.js 代碼如下:
/* 日期處理 time:源時間戳 type:要處理的格式 默認 xxxx年xx月xx日 /: xxxx/xx/xx .: xxxx.xx.xx -: xxxx-xx-xx */ export const normalDate = (time,type) => { if (time) { var date = new Date(); date.setTime(time); var year = date.getFullYear(); var month = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) * 1 : date.getMonth() + 1; var day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate(); if(type == '-'){ return year + '-' + month + '-' + day; }else if(type == '/'){ return year + '/' + month + '/' + day; }else if(type == '.'){ return year + '.' + month + '.' + day; }else{ return year + '年' + month + '月' + day + '日'; } } } /* 時間處理 time:源時間戳 type:要處理的格式 默認 xxxx年xx月xx日 xx:xx:xx /: xxxx/xx/xx xx:xx:xx .: xxxx.xx.xx xx:xx:xx -: xxxx-xx-xx xx:xx:xx */ export const normalTime = (time,type) => { if (time) { var date = new Date(); date.setTime(time); var year = date.getFullYear(); var month = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) * 1 : date.getMonth() + 1; var day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate(); var hours = date.getHours() < 10 ? '0' + date.getHours() : date.getHours(); var minutes = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes(); var seconds = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds(); if(type == '-'){ return year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds; }else if(type == '/'){ return year + '/' + month + '/' + day + ' ' + hours + ':' + minutes + ':' + seconds; }else if(type == '.'){ return year + '.' + month + '.' + day + ' ' + hours + ':' + minutes + ':' + seconds; }else{ return year + '年' + month + '月' + day + '日' + ' ' + hours + ':' + minutes + ':' + seconds; } } }
然后在 main.js 中引入注冊即可使用:
import * as filters from './filters' Object.keys(filters).forEach(key => Vue.filter(key, filters[key]));
在頁面中使用:
<p>{{time | normalDate('/')}}</p> //這樣時間戳就會轉化為xxxx/xx/xx的格式
希望本文所述對大家vue.js程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。