Firebase功能。获取新FireBase函数SDK的参数

时间:2019-01-25 10:44:01

标签: firebase firebase-cloud-messaging google-cloud-functions

返回0.9.1,了解我们使用的Firebase Function。事件处理传递给我们函数的数据。

现在,我们为Firebase Function SDK版本1快照。

exports.fcmSend = functions.database.ref('/messages/{userId}/{messageId}').onCreate((snap,context) =>{
  const message = snap.val()
  const userId  = snap.ref.parent.path; //This part is getting null; 

如何从此引用获取用户ID?

1 个答案:

答案 0 :(得分:0)

const userId = context.params.userId