如何比较getMonth()和完整日期格式?

时间:2019-02-22 02:48:44

标签: typescript

如何将2019-02-22getMonth()的格式进行比较?
getMonth()仅以单数形式出现,例如本月为1
我想让他们比较
例如,date在数据库中是动态的,其格式为2019-02-22 12:13:12

where('date', '=', new Date().getMonth());

2 个答案:

答案 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可以满足您的需求