首页 > 解决方案 > response.error 不是 Parse Cloud Code 中的函数

问题描述

我正在运行解析服务器并尝试创建解析云代码功能。我从这个过于简单的例子开始:

Parse.Cloud.define("createContent", function(request, response) {
  response.error("not implemented");
});

我可以使用带有 curl 的 REST API 调用我的函数,并获取带有错误消息的 JSON:({"code":141,"error":"response.error is not a function"}这不是我预期的错误消息)。经进一步检查response,对象竟然是null

这是日志的相应部分:

error: Failed running cloud function createContent for user undefined with:
Input: {}
Error: {"code":141,"message":"response.error is not a function"} functionName=createContent, code=141, message=response.error is not a function, , user=undefined
error: response.error is not a function code=141, message=response.error is not a function

标签: parse-platformparse-cloud-code

解决方案


看起来您正在运行最新版本的服务器。请遵循迁移指南:

https://github.com/parse-community/parse-server/blob/master/3.0.0.md

例如,现在您需要编写:

Parse.Cloud.define("createContent", function(request, response) {
  throw "not implemented";
});

// also valid
Parse.Cloud.define("createContent", function(request, response) {
  throw new Error("not implemented");
});

// returning a rejected promise
Parse.Cloud.define("createContent", function(request, response) {
  return Promise.reject("not implemented");
});

推荐阅读