0
我已經將一個parse-server部署到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);
});
});