如何在Cloud Functions中将数据写入Cloud Firestore?

时间:2018-10-29 20:21:53

标签: firebase google-cloud-firestore google-cloud-functions

我不确定以下代码为什么不起作用。这里有什么问题吗?还是有其他方法?

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');
                  });
            });

0 个答案:

没有答案