Firestore onDocument内部嵌套集合的onSnapshot

时间:2019-10-13 09:24:54

标签: javascript firebase google-cloud-firestore

我正尝试通过Web与Firebase-> firestore建立聊天,因此我试图使其与onSnapshot一起使用,以便用户在打开聊天后能够收到消息。

我已经像这样构造了noSQL数据库:

我有一个名为Chats的集合,在该集合中我有一些文档,这些文档的名称表示两个用户之间的关系哈希,该哈希也存储在我的SQL数据库中,我想我将使用它作为标识符。

enter image description here

每个文档中都有一个名为“对话”的集合,其中将包含两个用户之间的所有聊天记录。

enter image description here

如果我在第一个集合“聊天”中收听具有特定ID的文档,则如果更改“时间戳记”之类的字段,我将在控制台中看到日志,

db.collection('chats').where(firebase.firestore.FieldPath.documentId(), '==', '#randomHASH').onSnapshot((snapshot) => {
    let changes = snapshot.docChanges();
    console.log('CHANGES');
    console.log(changes);

    changes.forEach(change => {
        console.log(change.doc.data());
    })
});

但是,我该如何收听目标文档中的“对话”集合? 每次在目标文档中添加或编辑新文档时,我都希望获得日志。

我尝试过,但这似乎不是窍门:)

db.collection('chats').where(firebase.firestore.FieldPath.documentId(), '==', '#randomHASH').collection('conversations').onSnapshot((snapshot) => {
    let changes = snapshot.docChanges();
    console.log('CHANGES');
    console.log(changes);

    changes.forEach(change => {
        console.log(change.doc.data());
    })
});

这就是我启动Firebase的方式

<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.1.0/firebase-app.js"></script>

<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.1.0/firebase-firestore.js"></script>

<!-- TODO: Add SDKs for Firebase products that you want to use
     https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.1.0/firebase-analytics.js"></script>

<script>
  // Your web app's Firebase configuration
  var firebaseConfig = {
    apiKey: "xxxxxxxxx",
    authDomain: "myapp-xxxxx.firebaseapp.com",
    databaseURL: "https://myapp.firebaseio.com",
    projectId: "myapp-xxxxx",
    storageBucket: "myapp-xxxxx.appspot.com",
    messagingSenderId: "xxxxxxxxx",
    appId: "1:xxxxx:web:xxxx",
    measurementId: "x-xxxxxx"
  };
  // Initialize Firebase
  firebase.initializeApp(firebaseConfig);
  firebase.analytics();
  const db = firebase.firestore();
</script>

1 个答案:

答案 0 :(得分:2)

您应该这样做:

db.collection('chats').doc('#randomHASH').collection('conversations').onSnapshot((snapshot) => {...});

doc中所述,“ DocumentReference也可用于为子集合创建CollectionReference。”

实际上,您可以根据需要链接collection()doc()方法,以获得对任何文档或(sub-)(sub-)(...)集合的引用。


请注意,类似地,在第一种情况下,您可以执行以下操作:

db.collection('chats').doc('#randomHASH').onSnapshot((snapshot) => {...});

现在,为什么您的代码在第一种情况下有效,而在第二种情况下无效?

在第一种情况下,通过执行db.collection('chats').where(firebase.firestore.FieldPath.documentId(), '==', '#randomHASH')定义了一个query,它确实具有一个onSnapshot()方法。

但是在第二种情况下,您在同一collection()上调用query方法,而query没有这样的方法。