我想在不获取整个文档的情况下更新Firestore文档中的字段。有人可以帮我吗?
答案 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"
)。