下面是我在youtube上使用的函数。
const functions = require("firebase-functions");
const admin = require("firebase-admin");
admin.initializeApp();
exports.androidPushNotification =
functions.firestore.document('MyMoneyNotifications/{MyPercentageMoney}').onCreate(
(snapshot, context)=>
{
admin.messaging().sendToTopic(
"new_user_forums",
{
notification:{
title:snapshot.data().title,
body: snapshot.data().body
}
});});
它运行良好。但我想检查一下下面的结构。
Notifications(collection)
->UserId(document)
->MyNotification(collection)
->notify1
->notify2
现在,我想检查一个特定的用户是否有任何新的通知。如何检查集合";MyNotification";在防火区功能
如果您正在尝试侦听子集合,则可以将路径设置为:
exports.androidPushNotification =
functions.firestore.document('Notifications/{userId}/MyNotification/{notificationId}')
您可以在文档中阅读更多关于此的信息