随身笔记
随身笔记

小程序wxs时间戳格式化案例

小程序 引入 封装js

1,新建一个timeUtil.wxs

2,编辑timeUtil.wxs

var formatNumber = function(n){
  n = n.toString()
  return n[1] ? n : '0' + n
}

var regYear = getRegExp("(y+)", "i");

var dateFormat = function(timestamp,format){
if (!format) {
  format = "yyyy-MM-dd hh:mm:ss";
}
timestamp = parseInt(timestamp);
var realDate = getDate(timestamp);
function timeFormat(num) {
  return num < 10 ? '0' + num : num;
}
var date = [
 ["M+", timeFormat(realDate.getMonth() + 1)],
 ["d+", timeFormat(realDate.getDate())],
 ["h+", timeFormat(realDate.getHours())],
 ["m+", timeFormat(realDate.getMinutes())],
 ["s+", timeFormat(realDate.getSeconds())],
 ["q+", Math.floor((realDate.getMonth() + 3) / 3)],
 ["S+", realDate.getMilliseconds()],
];
var reg1 = regYear.exec(format);
// console.log(reg1[0]);
if (reg1) {

 format = format.replace(reg1[1], (realDate.getFullYear() + '').substring(4 - reg1[1].length));
}
for (var i=0;i<date.length;i++) {
 var k = date[i][0];
 var v = date[i][1];

 var reg2 = getRegExp("(" + k + ")").exec(format);
 if (reg2) {
 format = format.replace(reg2[1], reg2[1].length == 1
   ? v : ("00" + v).substring(("" + v).length));
 }
}
 return format;
}


module.exports = {
dateFormat: dateFormat
};

 

3,在需要的wxml文件引入

<wxs module="dateUtil" src="../../wxs/timeUtil.wxs"></wxs>

<view>
<!-- 不指定格式则默认输出:yyyy-MM-dd hh:mm:ss 格式 -->
{{dateUtil.dateFormat('1537578367970')}}
</view>
<view>
<!-- 第一个参数为当前时间戳,第二个参数为指定时间输出格式,如下 -->
{{dateUtil.dateFormat('1537578367970','yyyy/MM/dd')}}
</view>

 

https://blog.csdn.net/u010651383/article/details/82810185

随身笔记

小程序wxs时间戳格式化案例
小程序 引入 封装js 1,新建一个timeUtil.wxs 2,编辑timeUtil.wxs var formatNumber = function(n){ n = n.toString() return n[1] ? n : '0' + n } var regYear = get…
扫描二维码继续阅读
2019-06-15