gpt4 book ai didi

javascript - 使用 Modular SDK v9 的 Firestore 条件 where 子句

转载 作者:行者123 更新时间:2023-12-05 00:25:34 25 4
gpt4 key购买 nike

如何使用条件查询 where()使用 Firebase Modular SDK (v9) 的子句?
namespace 版本 (v8) 中的示例查询:

const status = "live"
const publishedAfter = 1630607348811

let q = firebase.firestore().collection("articles")

// filters selected by users
if (status) q = q.where("status", "==", "live")
if (publishedAfter) q = q.where("publishedAt", ">", publishedAfter)

const qSnapshot = await q.get()

最佳答案

选项 1:有条件地添加 QueryConstraint 使用先前作为基础

let q = query(collection(firestore, "articles"))

// filters selected by users
if (status) q = query(q, where("status", "==", "live"))
if (publishedAfter) q = query(q, where("publishedAt", ">", publishedAfter))

const qSnapshot = await getDocs(q);
选项 2:有条件地添加 QueryConstraints到数组
const constraints = []

// filters selected by users
if (status) constraints.push(where("status", "==", "live"))
if (publishedAfter) constraints.push(where("publishedAt", ">", publishedAfter))

const q = query(collection(firestore, "articles"), ...constraints)

const qSnapshot = await getDocs(q);

关于javascript - 使用 Modular SDK v9 的 Firestore 条件 where 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69036031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com