我正在尝试实现Android订购系统,并且正在使用实时数据库。要发送通知,我正在JavaScript中使用Firebase函数。
每个用户及其ID,发送通知的令牌以及其他数据都存储在数据库中。 我要尝试的是检测用户何时收到订单并向他们发送通知。
问题出现在这里。 在某些情况下发送通知,而在其他情况下则不发送。查看我的“ sendNotif”函数的日志,我发现错误是这样的:
TypeError: Cannot read property 'idcomprador' of null
at exports.sendNotif.functions.database.ref.onWrite (/user_code/index.js:133:32)
at Object.<anonymous> (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:112:27)
at next (native)
at /user_code/node_modules/firebase-functions/lib/cloud-functions.js:28:71
at __awaiter (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:24:12)
at cloudFunction (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:82:36)
at /var/tmp/worker/worker.js:827:24
at process._tickDomainCallback (internal/process/next_tick.js:135:7)
我的代码:
exports.sendNotif = functions.database.ref('/Usuarios/{vendedorId}/Solicitudes/Venta/{pushId}').onWrite((change, context) => {
// Grab the current value of what was written to the Realtime Database.
const solicitud = change.after.val();
const compradorId = solicitud.idcomprador
const pedidoId = solicitud.idpedido
const vendedorId = solicitud.idvendedor
var solicitudTokens = [vendedorId];
// Notification details.
const payload = {
notification: {
title: `Order`,
body: `order`,
icon: 'photoURL',
tag: 'solicitudventa',
sound: 'default',
clickAction: 'ACTIVITY_ORDER',
badge: '2'
},
data: {
extra: 'extra_data',
},
};
const options = {
collapseKey: 'demo',
contentAvailable: true,
priority: 'high',
timeToLive: 60 * 60 * 24,
};
var ref = admin.database().ref(`Usuarios/${vendedorId}/token/result/token`);
return ref.once("value", function(snapshot){
admin.messaging().sendToDevice(snapshot.val(), payload)
},
function (errorObject) {
console.log("The read failed: " + errorObject.code);
});
});
第133行是: const compradorId = solicitud.idcomprador 。 我不明白为什么有时有时会起作用,有时却没有。
答案 0 :(得分:2)
onWrite将触发与触发器位置匹配的任何更改。这意味着它将触发任何创建,更新或删除操作。
当触发事件是创建新数据时,change.before
将是未定义的(之前没有数据),并且change.after
将包含快照。
当触发事件是数据删除时,change.before
将包含一个快照,而change.after
将是未定义的。
您的代码盲目地假设change.after
包含快照。删除数据完全有可能触发您的功能,但失败了,因为那不是设计的目的。
使用onWrite时,有责任检查并适当处理此情况。如果您不关心删除事件,请考虑使用onCreate来捕获新数据。