Android-Firebase推送通知后端显示错误

时间:2018-09-07 16:56:38

标签: android firebase google-cloud-functions

我没有更多的Android经验,并且几乎不了解JavaScript编码,我遵循了一个教程来创建firebase函数,现在 firebase函数将beta更改为稳定,并且我的代码向我显示了错误:

这是我的代码--->

'use strict'

const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();

exports.sendNotification = functions.database.ref('/notifications/{user_id}/{notification_id}').onWrite((change, context)=> {

  const user_id = context.params.user_id;
  const notification_id = context.params.notification_id;

  console.log('We have a notification from : ', user_id);

  if (!event.data.exists()) {

    return console.log('A Notification has been deleted from the database : ', notification_id);

  }

  const fromUser = admin.database().ref(`/notifications/${user_id}/${notification_id}`).once('value');

  return fromUser.then(fromUserResult => {

    const from_user_id = fromUserResult.val().from;

    console.log('You have new notification from  : ', from_user_id);
 
    const userQuery = admin.database().ref(`Users/${from_user_id}/name`).once('value');
    const deviceToken = admin.database().ref(`/Users/${user_id}/device_token`).once('value');

    return Promise.all([userQuery, deviceToken]).then(result => {

      const userName = result[0].val();
      const token_id = result[1].val();
        
      const payload = {
        notification: {
          title : "New Friend Request",
          body: `${userName} has sent you request`,
          icon: "default",
          click_action : "in.tvac.akshaye.lapitchat_TARGET_NOTIFICATION"
        },
        data : {
          from_user_id : from_user_id
        }
      };

      return admin.messaging().sendToDevice(token_id, payload).then(response => {

        console.log('This was the notification Feature');
      });
    });
  });
});

这是我的数据库---->

  • 通知
  • BOhvOUJG8sWgIyTD7JLuSOgfv9v1
    • aqTdCWJYfvQiw188MqldsDtlLFf2 -LLO14ghpMruZtqwK7CR,来源:“ rrajSiL7SFd7WQydkA7jwxi26s63”类型:“ request” -LLOQ2WsWHymJvdOxrx5,来源:“ rrajSiL7SFd7WQydkA7jwxi26s63”类型:“ request” -LLfVM43o8Rt-1A55r28 -LLfxudlktvk3ysxvype

我遇到此错误--->

ReferenceError: event is not defined
    at exports.sendNotification.functions.database.ref.onWrite (/user_code/index.js:15:7)
    at cloudFunctionNewSignature (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:105:23)
    at cloudFunction (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:135:20)
    at /var/tmp/worker/worker.js:733:24
    at process._tickDomainCallback (internal/process/next_tick.js:135:7)

1 个答案:

答案 0 :(得分:0)

enter image description here

请检查您是否已定义事件