包含2个以上where子句的Firestore查询不返回任何文档



我使用的查询包含3个where子句

console.log中没有返回错误

若我注释.where('eventFromDateTime', '>=', currentDate),那个么只有它返回文档。

你能告诉我这个查询出了什么问题吗?

感谢

const currentDate = new Date();的格式与您在eventFromDateTime中保存的字符串不同。这意味着where条件将无法正常工作。

currentDate是对象,eventFromDateTime是字符串

相关内容

  • 没有找到相关文章

最新更新