本文主要是介绍vue2 后端传年月日 时分秒 前端拿到当日时间 做对比 如果是当日的时间 筛选出来,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
getList () {
this.loading = true
listAlarm(this.queryParams).then(response => {
this.listData = response.rows
const currentDate = new Date()
const year = currentDate.getFullYear()
const month = currentDate.getMonth() + 1 // 月份是从 0 开始计数的,所以需要加 1
const day = currentDate.getDate()
const formattedDate = `${year}-${month < 10 ? '0' + month : month}-${day < 10 ? '0' + day : day}`
console.log('我拿到当前的时间', formattedDate)
let arr = []
// let nowTimeDataList = []
this.listData.forEach(x => {
if (x.createTime.slice(0, 10) == formattedDate) {
arr.push(x.createTime.slice(0, 10))
this.nowTimeDataList.push(x)
}
})
console.log(11111, this.nowTimeDataList)
// this.total = response.total
// this.loading = false
})
},
这篇关于vue2 后端传年月日 时分秒 前端拿到当日时间 做对比 如果是当日的时间 筛选出来的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!