最佳答案
例如,我有动态过滤我的书籍清单,我可以设置特定的颜色,作者和类别。 此过滤器可以同时设置多种颜色和多个类别。
Book > Red, Blue > Adventure, Detective.
如何有条件地添加“ where”?
firebase
.firestore()
.collection("book")
.where("category", "==", )
.where("color", "==", )
.where("author", "==", )
.orderBy("date")
.get()
.then(querySnapshot => {...