Javascript 使用141解析云400错误请求

Javascript 使用141解析云400错误请求,javascript,parse-cloud-code,Javascript,Parse Cloud Code,我有简单的hello world云代码 //on parse cloud main.js Parse.Cloud.define("hello", function(request, response) { response.success("Hi"); }); ()从我的parse JS应用程序中我得到了这个 Parse.initialize('KEY', 'KEY'); Parse.Cloud.run('hello').then(function(response) { // r

我有简单的hello world云代码

//on parse cloud main.js
Parse.Cloud.define("hello", function(request, response) {
   response.success("Hi");
});
()从我的parse JS应用程序中我得到了这个

Parse.initialize('KEY', 'KEY');
Parse.Cloud.run('hello').then(function(response) {
   // response
   console.log(response);
});
在我请求这个解析云hello函数之后,它用

{"code":141,"error":"function not found"}

请帮助我。

您似乎没有在其中设置URL。

您似乎没有在其中设置URL。

这是因为解析服务器错误这是因为解析服务器错误