Firebase Firestore 函数 onWrite 是否支持多个参数?
Does the Firebase Firestore Function onWrite support multiple params?
#onWrite
Firebase Firestore 函数 - 我从 the docs 和网络上的几个示例了解到,Firestore 函数支持路径中的一个 variable/param,例如:
functions.firestore
.document('tests/{firstId}')
.onWrite((change, context) => { ... })
...但是如果它在路径中支持多个参数,我找不到文档或示例,例如:
functions.firestore
.document('tests/{firstId}/nested/{secondId}') //- note the secondId
.onWrite((change, context) => { ... })
我在本地 Firestore 模拟器上的测试 运行 中没有触发此功能。
谁能确认是否支持多个参数?
它确实支持文档路径中的多个通配符。 documentation.
中有一个例子
如果您在使用模拟器时遇到问题,请使用 firebase-tools repo 提交错误报告。
#onWrite
Firebase Firestore 函数 - 我从 the docs 和网络上的几个示例了解到,Firestore 函数支持路径中的一个 variable/param,例如:
functions.firestore
.document('tests/{firstId}')
.onWrite((change, context) => { ... })
...但是如果它在路径中支持多个参数,我找不到文档或示例,例如:
functions.firestore
.document('tests/{firstId}/nested/{secondId}') //- note the secondId
.onWrite((change, context) => { ... })
我在本地 Firestore 模拟器上的测试 运行 中没有触发此功能。
谁能确认是否支持多个参数?
它确实支持文档路径中的多个通配符。 documentation.
中有一个例子如果您在使用模拟器时遇到问题,请使用 firebase-tools repo 提交错误报告。