相关疑难解决方法(0)

Firestore - 收听特定的字段更改?

如何使用firestore js sdk监听特定的字段更改?

在文档中,它们似乎只显示如何监听整个文档,如果任何"SF"字段发生更改,它将触发回调.

db.collection("cities").doc("SF")
.onSnapshot(function(doc) {
    console.log("Current data: ", doc && doc.data());
});
Run Code Online (Sandbox Code Playgroud)

javascript firebase google-cloud-firestore

20
推荐指数
2
解决办法
7760
查看次数

如何在Firestore中获取密钥列表?

我有一组带有生成标识符的文档.问题是:是否可以在不查询所有文档数据的情况下获取标识符列表?将这些密钥存储在单独的集合中更好吗?

firebase google-cloud-firestore

8
推荐指数
2
解决办法
3500
查看次数

如何仅允许公开访问firestore文档的特定字段

假设我在firestore数据库中有这个结构:

collection[
  document: {
    x: 'x',
    y: 'y'
  }
]
Run Code Online (Sandbox Code Playgroud)

我有这个firebase规则:

service cloud.firestore {
  match /databases/{database}/documents {
    match /collection/{document} {
      allow read: if true;
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

但是这个规则暴露了document上面的整体collection,我想要做的只是暴露x场,是否可能?谢谢

firebase firebase-realtime-database google-cloud-firestore

6
推荐指数
1
解决办法
1830
查看次数