vue实现的封装全局filter并统一管理操作示例

时间:2021-05-26

本文实例讲述了vue实现的封装全局filter并统一管理操作。分享给大家供大家参考,具体如下:

在前后端分离的项目中,经常会有后台返回的数据需要进过处理才能显示到页面上的场景。

使用最多的场景就是日期和时间的处理,后台一般返回的都是时间戳,那么我们就要对时间戳进行处理。

下面就拿封装全局的处理日期和时间的filter来展示如何 vue 如何封装全局 filter并统一处理。

src目录下新建filters目录用来专门存放全局过滤器,如果项目的过滤器过多,那么就要按类型分类。

我司的项目需要前台处理的数据不是太多,那么就在filters目录下新建一个index.js来存放所有的过滤器就足够了。

index.js代码如下:

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 + '日'; } }}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程序设计有所帮助。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章