vue实现的封装全局filter并统一管理操作示例
本文实例讲述了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程序设计有所帮助。
相关文章
解决vue前端rsa加密遇到的问题message too long for RS
这篇文章主要介绍了解决vue前端rsa加密遇到的问题message too long for RSA,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教2024-07-07Element UI 上传组件实现文件上传并附带额外参数功能
在使用 ElementUI 的上传组件 el-upload 实现文件上传功能时,如果单文件上传是比较简单的,但是在实际需求中,往往会在上传文件时伴随着一些其他参数,怎么操作呢,下面通过示例代码讲解感兴趣的朋友一起看看吧2023-08-08在vue中使用css modules替代scroped的方法
本篇文章主要介绍了在vue中使用css modules替代scroped的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-03-03vue子组件中使用window.onresize()只执行一次问题
这篇文章主要介绍了vue子组件中使用window.onresize()只执行一次问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教2024-08-08vscode 配置vue+vetur+eslint+prettier自动格式化功能
这篇文章主要介绍了vscode 配置vue+vetur+eslint+prettier自动格式化功能,本文通过实例代码图文的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-03-03解决Vue.js由于延时显示了{{message}}引用界面的问题
今天小编就为大家分享一篇解决Vue.js由于延时显示了{{message}}引用界面的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2018-08-08
最新评论