gpt4 book ai didi

node.js - 在嵌套集合中将 onCreate 与 Firebase Cloud Functions 结合使用

转载 作者:行者123 更新时间:2023-12-05 08:30:56 25 4
gpt4 key购买 nike

我希望创建一个每次创建文档时都会调用的 Firebase Cloud Function。使用他们的教程,我有以下代码:

exports.sendConfirmationEmail = functions.firestore.document('collection1/{resId}')
.onCreate((snap, context) => {
// my method
});

现在每次将文档添加到 collection1 时都会调用此方法。但是我有一个如下所示的数据库结构:

|企业

| => 商业文件

| => |预订

不确定这是否有意义,但本质上有一个业务集合,其中每个业务文档都包含一个预订子集合。我需要编写一个函数,每次将文档添加到每个业务的预订集合时都会执行该函数,但仍然能够以某种方式访问​​业务文档。我怎样才能做到这一点?感谢您的帮助。

最佳答案

您的函数定义将如下所示:

exports.yourFunctionName =
functions.firestore.document('businesses/{businessId}/reservations/{reservationId}')
.onCreate((snap, context) => {
// your code goes here
});

关于node.js - 在嵌套集合中将 onCreate 与 Firebase Cloud Functions 结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61412988/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com