繁体   English   中英

使用141解析云400错误请求

[英]Parse Cloud 400 Bad Request with 141

我有简单的云代码和hello world

//on parse cloud main.js
Parse.Cloud.define("hello", function(request, response) {
   response.success("Hi");
});

云中的main.js )和我的解析JS应用程序我有这个

Parse.initialize('KEY', 'KEY');
Parse.Cloud.run('hello').then(function(response) {
   // response
   console.log(response);
});

在我请求此解析云hello函数后,它响应400错误请求

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

请帮我。

您似乎没有在那里设置URL。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM