微信小程序截取时间判断显示今天昨天上年
截取后台返回的数组截取时间判断显示 今天的数据显示今天 昨天的数据显示昨天 其余的显示月份和日期 不是今年的就显示年月日 这里要用到系统时间和循环截取判断
var timestamp = Date.parse(new Date());
var date = new Date(timestamp);
//获取年份
var Y = date.getFullYear();
//获取月份
var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1);
//获取当日日期
var D = date.getDate() < 10 ? '0' + date.getDate() : date.getDate();
console.log(Y + '-' + M + '-' + D );
var cusxin = []
var suxsin = []
var xusinx = []
var scisxn = []
for (let i = 0; i < that.data.numsxin.length; i++) {
scisxn.push(that.data.numsxin[i].createDate.substring(0, 10))
cusxin.push(that.data.numsxin[i].createDate.substring(5, 10))
suxsin.push(that.data.numsxin[i].createDate.substring(11, 16))
xusinx.push(that.data.numsxin[i].createDate.substring(11, 13))
}
for (let x = 0; x < scisxn.length; x++) {
if (scisxn[x] == (Y + '-' + M + '-' + D)) {
cusxin[x] = '今天'
} else if (scisxn[x] == (Y + '-' + M + '-' + (D - 1))) {
cusxin[x] = '昨天'
} else if ((scisxn[x].substring(0, 4)) != Y) {
cusxin[x] = scisxn[x]
console.log('执行了')
}
}
for (let j = 0; j < xusinx.length; j++) {
if (xusinx[j] > 18) {
xusinx[j] = '晚上'
} else if (14 <= xusinx[j] && xusinx[j] < 19) {
xusinx[j] = '下午'
} else if (12 <= xusinx[j] && xusinx[j] < 14) {
xusinx[j] = '中午'
} else if (6 <= xusinx[j] && xusinx[j] < 12) {
xusinx[j] = '早上'
} else if (0 <= xusinx[j] && xusinx[j] < 6) {
xusinx[j] = '凌晨'
}
}
console.log('年月份', scisxn)
console.log('日期', cusxin)
console.log('时间:', suxsin)
console.log('时间段', xusinx)
有什么问题欢迎评论留言,我会及时回复你的