我在Firebase函数中的onCreate功能没有在云数据库中创建我想要的集合



我刚刚在我的索引.js函数文件(firebase CLI(中输入了一个代码。根据我的代码,必须在Firebase的云数据库中创建一个时间线集合。功能是健康的,它没有被部署的错误,即使在日志中也一切正常。但是,当我在我的应用程序中关注用户时,仍然不会在云数据包中创建时间线集合。

这是我的代码:

const functions = require("firebase-functions");
const admin = require("firebase-admin");
admin.initializeApp();
exports.onCreateFollower = functions.firestore
.document("/followers/{userId}/userFollowers/{followerId}")
.onCreate(async (snapshot, context) => {
console.log("Follower Created", snapshot.id);
const userId = context.params.userId;
const followerId = context.params.followerId;
// 1) Create followed users posts ref
const followedUserPostsRef = admin
.firestore()
.collection("posts")
.doc(userId)
.collection("userPosts");
// 2) Create following user's timeline ref
const timelinePostsRef = admin
.firestore()
.collection("timeline")
.doc(followerId)
.collection("timelinePosts");
// 3) Get followed users posts
const querySnapshot = await followedUserPostsRef.get();
// 4) Add each user post to following user's timeline
querySnapshot.forEach(doc => {
if (doc.exists) {
const postId = doc.id;
const postData = doc.data();
return timelinePostsRef.doc(postId).set(postData);
}
});
});

由于要并行执行可变数量的异步调用,因此应使用Promise.all(),以便等待所有这些不同的异步调用完成,然后再向 CF 平台指示它可以清理 CF。 有关更多详细信息,请参阅 https://firebase.google.com/docs/functions/terminate-functions。

exports.onCreateFollower = functions.firestore
.document("/followers/{userId}/userFollowers/{followerId}")
.onCreate(async (snapshot, context) => {

const userId = context.params.userId;
const followerId = context.params.followerId;
// ...
// 3) Get followed users posts
const querySnapshot = await followedUserPostsRef.get();
// 4) Add each user post to following user's timeline
const promises = [];
querySnapshot.forEach(doc => {
//query results contain only existing documents, the exists property will always be true and data() will never return 'undefined'.
const postId = doc.id;
const postData = doc.data();
promises.push(timelinePostsRef.doc(postId).set(postData));
});
return Promise.all(promises);
});

相关内容

  • 没有找到相关文章

最新更新