云代码的解析服务器问题。

Parse-server problems with cloud code.

我已经将解析服务器部署到 heroku(mLab.com 作为数据库),但云代码存在一些问题。

调用"hello"函数时,一切正常。

当调用 "testFunction" 时,它又发出查询请求,我得到这个错误:

  XMLHttpRequest cannot load https://xxxxx.herokuapp.com/parse/functions/testFunction. 
    No 'Access-Control-Allow-Origin' header is present on the requested resource. 
Origin 'http://127.0.0.1:51488' is therefore not allowed access. 
The response had HTTP status code 503.

一直在玩 cors,但运气不佳。 任何建议将不胜感激。

------------ CLIENT ------------
Parse.initialize("xxxxxx");
Parse.serverURL = 'https://xxxxx.herokuapp.com/parse/'

Parse.Cloud.run('hello').then(function (result) {
    console.log(result);
});

Parse.Cloud.run('testFunction').then(function (result) {
    console.log(result);
});

------------ SERVER -----------  

Parse.Cloud.define('hello', function (req, res) {
    res.success('Hi');
});

Parse.Cloud.define("testFunction", function (request, response) {
    var query = new Parse.Query("Jobs");
    query.find().then(function (result) {
        response.success("Success: " + result);
    });
});

找出问题所在。我忘了在 heroku 的环境变量中添加 SERVER_URL 。