tnblog
首页
视频
资源
登录
愿你出走半生,归来仍是少年
排名
8
文章
222
粉丝
7
评论
7
bootstrap 栅格布局一小例子
剑轩 : 后端写样式有点痛苦哇
一点flex布局的运用
剑轩 : 后端写样式有点痛苦哇
vue.js常用指令
剑轩 : 可以可以,多总结一点
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

layui时间格式化

12996人阅读 2020/6/24 10:19 总访问:2062974 评论:0 收藏:0 手机
分类: 前端

可以先尝试这样写:

  1. {field: 'showtime',title: '时间',templet:"<div>{{layui.util.toDateString(d.showtime, 'yyyy-MM-dd HH:mm:ss')}}</div> "


但是这样写很有可能出现:layui时间格式化 NaN-NaN-NaN

这一个时候可以使用自定义函数来解决,返回一个你处理后的时间即可

  1. { field: 'CreateDateTime', title: '时间', templet: function (data) { return  你处理后的时间 } }

这个函数有个参数,这个参数随便取名字即可,可以返回这一行的数据,使用这个参数点出来即可,比如要取这个时间就是data.CreateDateTime


处里时间的方法:

可以先把/Date(1567138282927)/ 这种格式的时间转化成日期类型,然后在格式


化成日期类型:

  1. new Date(parseInt('/Date(1567138282927)/'.substr(613)));

然后在格式化成指定的日期:

方法可以参考:https://www.tnblog.net/hb/article/details/3676

具体实现:

  1. , {
  2.     field'CreateDateTime'title'时间'templetfunction (data{
  3.        var day = new Date(parseInt(data.CreateDateTime.substr(613)))
  4.        var time = day.format("yyyy-MM-dd hh:mm");
  5.        return time;
  6.     }
  7. }

其中格式化的方法:

  1. /**
  2.  *对Date的扩展,将 Date 转化为指定格式的String
  3.  *月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,
  4.  *年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)
  5.  *例子:
  6.  *(new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423
  7.  *(new Date()).Format("yyyy-M-d h:m:s.S")      ==> 2006-7-2 8:9:4.18
  8.  */
  9. Date.prototype.format = function (fmt{
  10.     var o = {
  11.         "M+"this.getMonth() + 1//月份
  12.         "d+"this.getDate(), //日
  13.         "h+"this.getHours(), //小时
  14.         "m+"this.getMinutes(), //分
  15.         "s+"this.getSeconds(), //秒
  16.         "q+"Math.floor((this.getMonth() + 3) / 3), //季度
  17.         "S"this.getMilliseconds() //毫秒
  18.     };
  19.     if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
  20.     for (var k in o)
  21.         if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
  22.     return fmt;
  23. }




欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价