我正在通过firebase云功能开发Android上的推送通知。当我使用onWrite()
条件时,我的代码工作得非常好,我正在尝试将此函数用于评论,但在这种情况下,当有人编辑或喜欢评论时会产生通知,所以我将其更改为{{1但是现在我收到错误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
})
});
存在问题,但我无法弄明白。
答案 0 :(得分:1)
你需要改变这个:
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
在实时数据库中创建,更新或删除数据时触发。因此,您可以检索更改的数据before
和after
。
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";
});