Vue如何引入全局过滤器
导读:收集整理的这篇文章主要介绍了Vue如何引入全局过滤器,觉得挺不错的,现在分享给大家,也给大家做个参考。 目录Vue引入全局过滤器创建单独的文件加上时间过滤函数在main.js中全局引入在...
收集整理的这篇文章主要介绍了Vue如何引入全局过滤器,觉得挺不错的,现在分享给大家,也给大家做个参考。 目录
- Vue引入全局过滤器
- 创建单独的文件
- 加上时间过滤函数
- 在main.js中全局引入
- 在组件中使用formatDate过滤时间戳
- vue全局过滤器配置
- 总结
Vue引入全局过滤器
创建单独的文件
加上时间过滤函数
将formatDate 暴露export 出来
// 时间戳转时分秒function getformatDate (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);
}
;
// 时间过滤 export function formatDate(time) {
return getformatDate(new Date(time), "yyyy-MM-dd hh:mm");
}
在main.js中全局引入
import * as filters From './filters' // global filters// register global utilITy filters.Object.keys(filters).foreach(key =>
{
Vue.filter(key, filters[key])}
)在组件中使用formatDate过滤时间戳
el-table :data="item.children" style="width: 100%">
el-table-column PRop="title" label="标题">
/el-table-column>
el-table-column prop="portName" label="上传单位">
/el-table-column>
el-table-column prop="createdTime" label="上传时间">
template slot-scoPE="scope">
{
{
scope.row.createdTime | formatDate}
}
/template>
/el-table-column>
/el-table>
页面显示
vue全局过滤器配置
有时一个过滤器需要在项目中多次使用,此时可以将该过滤器定义为全局过滤器,全局过滤器在main.js下配置。
以时间过滤器为例,当为局部过滤器写为:
filters: {
timeForm(val) {
if (typeof (value) == "undefined" || value === null) return "";
let date = new Date(value);
VAR y = date.getFullYear();
var m = date.getMonth() + 1;
var d = date.getDate();
if (isNaN(y) &
&
y != 0) {
y = " ";
}
if (isNaN(m) &
&
m != 0) {
m = " ";
}
else {
(m 10 ? "0" + m : m);
}
if (isNaN(d) &
&
d != 0) {
d = " ";
}
else {
(d 10 ? "0" + d : d);
}
return y + "-" + m + "-" + d + " " + date.toTimeString().substr(0, 5);
}
现在我们把它设置成全局过滤器
Vue.filter('timeForm', function (value) {
if (typeof (value) == "undefined" || value === null) return "";
let date = new Date(value);
var y = date.getFullYear();
var m = date.getMonth() + 1;
var d = date.getDate();
if (isNaN(y) &
&
y != 0) {
y = " ";
}
if (isNaN(m) &
&
m != 0) {
m = " ";
}
else {
(m 10 ? "0" + m : m);
}
if (isNaN(d) &
&
d != 0) {
d = " ";
}
else {
(d 10 ? "0" + d : d);
}
return y + "-" + m + "-" + d + " " + date.toTimeString().substr(0, 5);
}
);
var timeForm = Vue.filter('timeForm');
- 直接定义为:Vue.filter('timeForm', function (value) { //过滤代码}
- 然后定义一下过滤器:var timeForm = Vue.filter('timeForm')
使用的时候和局部过滤器相同方式使用,直接{ { value | filter } } 即可
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
您可能感兴趣的文章:- Vue的filters(本地)或filter(全局)过滤常用数据类型解析
- vue中的局部过滤器和全局过滤器代码实操
- vue全局过滤器概念及注意事项和基本使用方法
- Vue封装全局过滤器Filters的步骤
- Vue的全局过滤器和私有过滤器的实现
- vue-cli 3 全局过滤器的实例代码详解
- Vue中全局常用的过滤方法解读
声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!
若转载请注明出处: Vue如何引入全局过滤器
本文地址: https://pptw.com/jishu/609272.html
