您不会将任何内容“传递”给Firestore onCreate触发器。它只是在运行
任何时候
则创建匹配的文档。您必须指定要匹配的文档的模式。创建匹配的文档后,该函数将运行,您可以使用提供的
context
以了解创建的文档的ID。
我建议查看
documentation
例如onCreate触发器:
exports.createUser = functions.firestore
.document('users/{userId}')
.onCreate((snap, context) => { ... }
在上面提供的示例中,触发器匹配用户集合中的所有文档。这个
userId
通配符包含匹配的ID。您可以使用它来了解创建的文档的ID。使用
documentation for wildcards
您可以从传递给函数的上下文参数中获取ID。
以下是文档中使用onWrite触发器的示例:
exports.useWildcard = functions.firestore
.document('users/{userId}')
.onWrite((change, context) => {
// If we set `/users/marie` to {name: "Marie"} then
// context.params.userId == "marie"
// ... and ...
// change.after.data() == {name: "Marie"}
});