gpt4 book ai didi

javascript - Parse.Cloud.afterSave 方法不起作用

转载 作者:行者123 更新时间:2023-12-02 16:55:22 25 4
gpt4 key购买 nike

每次将新对象保存到名为“Message”的类时,我都尝试运行此云代码,但是我相信我错误地调用了 afterSave 方法,因为在保存新对象后,甚至我的 console.log 也没有显示反对我的名为“Message”的类(class)。我的代码有什么问题吗?

Parse.Cloud.afterSave("sendMessage", function(Message, response) {
var messageBody = null;
var messageSenderName = null;
var messageSenderId = null;
var randUsers = [];
console.log("The variables were set");
............other code that doesn't matter................
});

最佳答案

据我所知,每当新条目保存到 Parse DB 时,您都希望启动云功能。对于这种情况,afterSave 是可行的方法。但是,您的函数声明是错误的。该函数必须采用以下格式;

Parse.Cloud.afterSave("Message", function(request) {
.....
}

其中请求包含当前保存的条目信息。希望这有帮助。问候。

关于javascript - Parse.Cloud.afterSave 方法不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26221576/

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