firestore查询中的条件where子句

时间:2018-01-30 06:08:55

标签: javascript firebase google-cloud-firestore

我从firestore获取了一些数据但在我的查询中我想添加一个条件where子句。我正在使用async-await for api而不确定如何添加consitional where子句。

这是我的功能

export async function getMyPosts (type) {
  await api
  var myPosts = []

  const posts = await api.firestore().collection('posts').where('status', '==', 'published')
    .get()
    .then(snapshot => {
      snapshot.forEach(doc => {
        console.log(doc.data())
      })
    })
    .catch(catchError)
}

在我的主要功能中,我得到一个名为' type'的参数。根据该参数的值,我想在上面的查询中添加另一个qhere子句。例如,if type = 'nocomments',然后我想添加一个where子句。where('commentCount', '==', 0),否则if type = 'nocategories',然后where子句将查询另一个属性,如.where('tags', '==', 'none')

我无法理解如何添加此条件where子句。

注意:在firestore中添加多个条件,只需附加where - 。where("state", "==", "CA").where("population", ">", 1000000)等where子句即可。

1 个答案:

答案 0 :(得分:9)

仅在需要时将where子句添加到查询中:

export async function getMyPosts (type) {
  await api
  var myPosts = []

  var query = api.firestore().collection('posts')
  if (your_condition_is_true) {  // you decide
    query = query.where('status', '==', 'published')
  }
  const questions = await query.get()
    .then(snapshot => {
      snapshot.forEach(doc => {
        console.log(doc.data())
      })
    })
    .catch(catchError)
}