我有简单的云代码和hello world
//on parse cloud main.js
Parse.Cloud.define("hello", function(request, response) {
response.success("Hi");
});
(main.js in cloud)和我的解析JS应用程序我有这个
Parse.initialize('KEY', 'KEY');
Parse.Cloud.run('hello').then(function(response) {
// response
console.log(response);
});
在我请求此解析云hello函数后,它会使用
响应400错误请求{"code":141,"error":"function not found"}
请帮帮我。
答案 0 :(得分:0)
您似乎没有在那里设置网址。