我希望每次在Firebase数据库中创建新子项时都会收到通知。这是我到目前为止所得到的。使用这行代码,您可以在创建新子项时收到通知。但问题是通知总是带有标题:"标题",正文:"来检查它"是。现在我的问题是如何使用值City和Time创建通知(请参阅下面的结构)
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);
exports.sendPushNotification = functions.database.ref('/Rollerbanken/{Id}').onCreate(event => {
const payload = {
notification: {
title: 'Title',
body: 'come check it',
badge: '0',
sound: 'default',
}
};
return admin.database().ref('fcmToken').once('value').then(allToken => {
if(allToken.val()) {
const token = Object.keys(allToken.val());
return admin.messaging().sendToDevice(token, payload).then(response => {
});
};
});
});
我的结构:
{
"Rollerbanken" : {
"-KuKDXL2pY9MMtw551ZI" : {
"Extrainformatie" : "",
"Latitude" : "51.9145932124898",
"Longitude" : "5.86974696138047",
"Staater" : "Staat er",
"Staaternietmeer" : "",
"City" : "Overbetuwe",
"Time" : "15 : 43",
"TijdControle" : "15 : 43",
"TijdControleniet" : "",
"TypeControle" : "Rollerbank"
}
}
我希望你能帮助我!
答案 0 :(得分:0)
基本上,您需要为要发送的每个通知修改有效负载对象。好消息是因为它只是一个对象,你可以轻松访问它,所以你所要做的只是payload.name = YOURDESIREDVALUEHERE
所以您需要做的是获取新密钥(令牌)并使用它来访问您的对象。除非我错误的Object.keys生成一个数组,所以你的访问键应该是token [0],然后使用它来访问你的值,如allToken.val()[token[0]]["City"]
您的代码如下所示:
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);
exports.sendPushNotification = functions.database.ref('/Rollerbanken/{Id}').onCreate(event => {
const payload = {
notification: {
title: 'Title',
body: 'come check it',
badge: '0',
sound: 'default',
}
};
return admin.database().ref('fcmToken').once('value').then(allToken => {
if(allToken.val()) {
const token = Object.keys(allToken.val());
payload.notification.title = allToken.val()[token[0]]["City"] + allToken.val()[token[0]]["Time"] //change here
return admin.messaging().sendToDevice(token, payload).then(response => {
});
};
});
});