美文网首页
格式化前端日期时间戳

格式化前端日期时间戳

作者: _浅墨_ | 来源:发表于2021-08-19 17:00 被阅读0次

如何格式化前端日期时间戳内容

1、后端使用JsonFormat注解格式化日期,时间戳yyyy-MM-dd HH:mm:ss

/** 创建时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date time;

2、前端使用parseTime方法格式化日期,时间戳{y}-{m}-{d} {h}:{i}:{s}

<el-table-column label="创建时间" align="center" prop="createTime" width="160">
    <template slot-scope="scope">
      <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
    </template>
</el-table-column>

注,内容摘录自:
登录页面如何不显示验证码

相关文章

网友评论

      本文标题:格式化前端日期时间戳

      本文链接:https://www.haomeiwen.com/subject/rrdabltx.html