Vue之时间过滤器,CV即可
程序员文章站
2022-03-07 18:38:07
使用方式 代码 Vue.filter('...
{{date | format('yyyy-MM-dd hh:mm:ss')}}
使用方式
<div id="app">
<div>{{date | format('yyyy-MM-dd hh:mm:ss')}}</div>
</div>
<script>
var vm = new Vue({
el: '#app',
data: {
date: new Date()
}
});
</script>
代码
Vue.filter('format', function (value, arg) {
function dateFormat(date, format) {
if (typeof date === "string") {
var mts = date.match(/(\/Date\((\d+)\)\/)/);
if (mts && mts.length >= 3) {
date = parseInt(mts[2]);
}
}
date = new Date(date);
if (!date || date.toUTCString() == "Invalid Date") {
return "";
}
var map = {
"M": date.getMonth() + 1, //月份
"d": date.getDate(), //日
"h": date.getHours(), //小时
"m": date.getMinutes(), //分
"s": date.getSeconds(), //秒
"q": Math.floor((date.getMonth() + 3) / 3), //季度
"S": date.getMilliseconds() //毫秒
};
format = format.replace(/([yMdhmsqS])+/g, function (all, t) {
var v = map[t];
if (v !== undefined) {
if (all.length > 1) {
v = '0' + v;
v = v.substr(v.length - 2);
}
return v;
} else if (t === 'y') {
return (date.getFullYear() + '').substr(4 - all.length);
}
return all;
});
return format;
}
return dateFormat(value, arg);
})
本文地址:https://blog.csdn.net/weixin_47198024/article/details/107545789
推荐阅读
-
从零开始搭建前后端分离的NetCore2.2(EF Core CodeFirst+Autofac)+Vue的项目框架之六使用过滤器进行全局请求数据验证
-
vue基础之模板和过滤器用法实例分析
-
Vue单页面开发实例之数据列表+分页+时间筛选+类型选择及后台实现
-
vue2.0 自定义日期时间过滤器
-
Moment.js+Vue过滤器的使用,各种时间格式转换为YYYY-MM-DD HH:mm:ss格式
-
Vue之时间过滤器,CV即可
-
Vue学习笔记02day_02.品牌列表案例02_自定义全局时间过滤器+自定义样式指令
-
vue中格式化时间过滤器代码实例
-
从零开始搭建前后端分离的NetCore2.2(EF Core CodeFirst+Autofac)+Vue的项目框架之六使用过滤器进行全局请求数据验证
-
vue基础之模板和过滤器用法实例分析