Firestore数组包含任何无法使用数组值的内容吗?

时间:2020-02-28 10:44:36

标签: javascript react-native google-cloud-firestore

我正在存储Firestore,但是过滤查询无法按预期方式工作,但是当我从Firebase数据库UI进行过滤时,这无疑是它的工作。

代码:

const docBookingRef = firestore().collection("booking").where("parentCase", "array-contains-any", [66])
docBookingRef.get().then((doc) => {
    const list = [];
    doc.forEach(function (docV) {
      list.push(docV.data());
    });
    console.log('booking list', list);
  }).catch(function (error) {
    console.log('booking error', error);

  })

0 个答案:

没有答案