1.我没有找到实施的方法一次'像firebase一样的听众。我想这样做是为了提高性能,因为我不需要实时数据。
答案 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