我不确定以下代码为什么不起作用。这里有什么问题吗?还是有其他方法?
admin.firestore().collection('users').doc('llh6j1oNjihySVPzkMXYRJGkJT23').get().then(function (follower) {
console.log("in here successfully : " + JSON.stringify(follower.data()));
admin.firestore().collection('users').doc(doc.data().followers[i]).update({
followingPosts: posts
}, {merge: true}).then(function(){
console.log('succesful update');
});
});