是否有办法实施通配符并实施一次'在Firestore中的行动

时间:2017-10-15 04:40:08

标签: firebase google-cloud-firestore

1.我没有找到实施的方法一次'像firebase一样的听众。我想这样做是为了提高性能,因为我不需要实时数据。

  1. 是否可以在get请求中使用firestore实现通配符?

1 个答案:

答案 0 :(得分:-1)

您可以执行单个>>> wallet['gold'] += 10 来获取数据:

get()

可以使用查询来完成过滤:

var docRef = db.collection("cities").doc("SF");

docRef.get().then(function(doc) {
    if (doc.exists) {
        console.log("Document data:", doc.data());
    } else {
        console.log("No such document!");
    }
}).catch(function(error) {
    console.log("Error getting document:", error);
});

我强烈建议您阅读相关文档:https://firebase.google.com/docs/firestore/query-data/get-data