答案 0 :(得分:1)
您正在编码到旧版本的firebase-functions模块。从1.0版开始,onWrite处理程序接受两个参数-更改对象和事件上下文。 Please see the documentation for more details。
exports.commentsCount = functions.database.ref('/comments/{commentId}/{userId}').onWrite((change, context) => {
const commentId = context.params.commentId
})
您还必须调整代码以使用新的更改对象而不是旧的事件对象。