现在显示的格式如下图:
我期望统一格式,所以不妨前端处理一下,核心代码如下
filters: {
// 时间戳处理
formatDate: function(value, spe = '/') {
value = value * 1000
let data = new Date(value);
let year = data.getFullYear();
let month = data.getMonth() + 1;
let day = data.getDate();
let h = data.getHours();
let mm = data.getMinutes();
let s = data.getSeconds();
month = month >= 10 ? month : "0" + month;
day = day >= 10 ? day : "0" + day;
h = h >= 10 ? h : "0" + h;
mm = mm >= 10 ? mm : "0" + mm;
s = s >= 10 ? s : "0" + s;
return `${year}${spe}${month}${spe}${day} ${h}:${mm}:${s}`;
}
},
使用方法如下:文章来源:https://www.toymoban.com/news/detail-605302.html
<text>{{item.create_time | formatDate('-')}}</text>
代码结构如下:
文章来源地址https://www.toymoban.com/news/detail-605302.html
到了这里,关于uni-app优雅的实现时间戳转换日期格式的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!