如何更新Firestore中的文档字段?

时间:2019-02-02 10:08:52

标签: typescript firebase google-cloud-firestore

我想在不获取整个文档的情况下更新Firestore文档中的字段。有人可以帮我吗?

1 个答案:

答案 0 :(得分:2)

在公司的FireStore文档显示在文档中的更新字段的这个例子:

var washingtonRef = db.collection("cities").doc("DC");

// Set the "capital" field of the city 'DC'
return washingtonRef.update({
    capital: true
})
.then(function() {
    console.log("Document successfully updated!");
})
.catch(function(error) {
    // The document probably doesn't exist.
    console.error("Error updating document: ", error);
});

您会注意到,此代码最初不会加载文档。为此,您必须知道要更新的文档的ID(上面的示例代码中的"DC")。