我出于演示目的编写了此云功能。
Parse.Cloud.define('hello', function(req, res) {
res.success("hi");
});
但是它总是返回此错误消息
{
"code": 141,
"error": "res.success is not a function"
}
怎么了?
答案 0 :(得分:3)
启动解析服务器3.0后,不再有响应对象。只需返回该值即可使用。
Parse.Cloud.define(‘hello’, (req) => {
return ‘ok’;
});
有关更多信息,请参见迁移指南:https://github.com/parse-community/parse-server/blob/master/3.0.0.md