返回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?
答案 0 :(得分:0)
是
const userId = context.params.userId