gpt4 book ai didi

javascript - “onCreate”firebase云函数错误

转载 作者:行者123 更新时间:2023-12-03 01:43:26 25 4
gpt4 key购买 nike

我正在通过 Firebase 云功能在 Android 上开发推送通知。当我使用 onWrite() 条件时,我的代码工作得非常好,我试图实现此功能以进行评论,但在这种情况下,当有人编辑或喜欢评论时,它会产生通知,所以我改变了它到 onCreate() 但现在我收到错误 TypeError: Cannot read property 'val' of undefined.

这里是..

exports.pushNotificationCommentsPost = functions.database.ref('/post-comments/{postId}/{commentId}').onCreate((change, context) => {

const commentId = context.params.commentId;
const postId = context.params.postId;
const comment = change.after.val();
const posType = "Post";


const getPostTask = admin.database().ref(`/posts/${postId}`).once('value');

return getPostTask.then(post => {
// some code
})
});

我认为 const comment = change.after.val(); 有问题,但我无法弄清楚。

最佳答案

您需要更改此设置:

exports.pushNotificationCommentsPost = functions.database.ref('/post-comments/{postId}/{commentId}').onCreate((change, context) => {

进入此:

exports.pushNotificationCommentsPost = functions.database.ref('/post-comments/{postId}/{commentId}').onWrite((change, context) => {

工作,因为onWrite在实时数据库中创建、更新或删除数据时触发。因此,您可以检索更改之前和之后的数据。

onCreate() 在实时数据库中创建新数据时触发。因此您只能检索新添加的数据,例如:

exports.dbCreate = functions.database.ref('/path').onCreate((snap, context) => {
const createdData = snap.val(); // data that was created
});

更多信息在这里:

https://firebase.google.com/docs/functions/beta-v1-diff#realtime-database

根据您的情况,将其更改为:

exports.pushNotificationCommentsPost = functions.database.ref('/post-comments/{postId}/{commentId}').onCreate((snap, context) => {

const commentId = context.params.commentId;
const postId = context.params.postId;
const comment = snap.val();
const posType = "Post";

});

关于javascript - “onCreate”firebase云函数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50736866/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com