想象一下,您的图书收藏有一个动态过滤系统,允许用户按颜色、作者和类别进行过滤。要适应具有多个选择的过滤器(例如“红色、蓝色”和“冒险、侦探”),您需要在 Firestore 查询中实现条件“where”子句。
要有条件地添加“where”子句,您必须使用 Firestore 中查询对象的不可变性质。无需修改现有查询,而是为您添加的每个过滤器创建一个新的查询对象:
<code class="javascript">var query = firebase.firestore().collection("book"); // Check for conditions and add filters accordingly if (colorFilter) { query = query.where("color", "==", colorFilter); } if (categoryFilter) { query = query.where("category", "==", categoryFilter); } // Apply sorting if needed if (orderBy) { query = query.orderBy(orderBy.field, orderBy.direction); } // Finalize the query and fetch results query.get().then(...);</code>
通过不断地为每个新过滤器重新分配查询变量,您可以构建一系列动态适应您的条件查询。过滤标准。
以上是如何在Firestore中实现具有多个子句的条件过滤?的详细内容。更多信息请关注PHP中文网其他相关文章!