假设我们有一个名为“todos”的根集合。
此集合中的每个文档都有:
title
: 细绳- 子集合命名
todo_items
子集合中的每个文档todo_items
都有
title
: 细绳completed
: 布尔值
我知道默认情况下 Cloud Firestore 中的查询很浅,这很好,但是有没有办法自动查询todos
并获取包含子集合的结果todo_items
?
换句话说,如何使以下查询包含todo_items
子集合?
db.collection('todos').onSnapshot((snapshot) => {
snapshot.docChanges.forEach((change) => {
// ...
});
});