我使用的查询包含3个where子句
console.log
中没有返回错误
若我注释.where('eventFromDateTime', '>=', currentDate)
,那个么只有它返回文档。
你能告诉我这个查询出了什么问题吗?
感谢
const currentDate = new Date();
的格式与您在eventFromDateTime
中保存的字符串不同。这意味着where条件将无法正常工作。
currentDate
是对象,eventFromDateTime
是字符串