如何从参考中获取参数

时间:2018-06-22 17:45:16

标签: javascript firebase google-cloud-functions

我正在为我的应用程序使用firebase。我还使用Firebase云功能。我的问题是,如何从引用(请参见图片)中获取一个参数到 const commentid  enter image description here

1 个答案:

答案 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
})

您还必须调整代码以使用新的更改对象而不是旧的事件对象。