来自Firebase实时数据库,我想知道Cloud Firestore是否具有与updateChildren()函数等效的东西。它可以同时批量更新多个节点,如果失败,则不会更新任何节点。
Firestore 支持可以将多个文档作为一个单元更新的事务,或者如果任何更新失败,则不更新任何事务:
https://cloud.google.com/firestore/docs/manage-data/transactions
以下是引用页面的片段:
// Get a new write batch
var batch = db.batch();
// Set the value of 'NYC'
var nycRef = db.collection("cities").doc("NYC");
batch.set(nycRef, {name: "New York City"});
// Update the population of 'SF'
var sfRef = db.collection("cities").doc("SF");
batch.update(sfRef, {"population": 1000000});
// Delete the city 'LA'
var laRef = db.collection("cities").doc("LA");
batch.delete(laRef);
// Commit the batch
batch.commit().then(function () {
// ...
});