我有一个小问题。当有人向我的应用中的帖子添加评论时,我想发送通知。我不只使用数据库存储。我现在有这样的东西。
export const sendNotification = functions.firestore
.document('Comments/{commentId}')
.onCreate((snap, context) => {
const senderUid = snap.get('idUser');
const receiverUid = snap.get('idUserImage');
const comment = snap.get('comment');
});
现在如何使用文本-注释将ntification发送到receiverUid?
答案 0 :(得分:0)