如何将2019-02-22
与getMonth()
的格式进行比较?
getMonth()
仅以单数形式出现,例如本月为1
我想让他们比较
例如,date
在数据库中是动态的,其格式为2019-02-22 12:13:12
where('date', '=', new Date().getMonth());
答案 0 :(得分:0)
并不是您的where
函数的确切来源,但应该可以:
const date = new Date('2019-02-22 12:13:12');
const currentDate = new Date();
const isSameMonth = date.getMonth() === currentDate.getMonth();
console.log(isSameMonth); // true as of 22 Feb 2019
答案 1 :(得分:0)
在处理日期时间时,我经常使用Monent。时刻isSame可以满足您的需求