解析云代码查询导致"没有这样的应用"错误

时间:2016-04-18 03:07:37

标签: heroku cloud-code parse-server

我在heroku上运行Parse Server,我的云代码功能正常工作,除非我尝试查询。

Parse.Cloud.define('debuggingFn', function(request, response) {
  var query = new Parse.Query("Speech");
  query.equalTo("speechId", "s_1456277936842");
  query.find({
    success: function(results) {
      console.log('SUCCESS', results)
      response.success("Success", results);
    },
    error: function(a, b) {
      // ERROR CAUGHT HERE: 'Heroku | No such app'
      console.log('ERROR', a, b)
      response.error("Error");
    }
  });
});

语音是一个有效的类,而speechId存在。我不知道自己错过了什么?

1 个答案:

答案 0 :(得分:0)

发现了这个问题。 heroku中的我的SERVER_URL配置字段中有一个拼写错误。修复了这一切,现在一切似乎都有效:)