在我的index.html
顶部,我像这样成功地初始化了Parse-Server:
<script>
Parse.initialize("MY_KEY");
Parse.serverURL = 'http://MY_APP_NAME.herokuapp.com/parse/';
/*var GameScore = Parse.Object.extend("Test");
var gameScore = new GameScore();
gameScore.save({playerName: "Granto"}).then(function(object) {
alert("SUCCESS BRAHSKI");
});*/
</script>
我知道初始化是成功的,因为如上所述,我能够将测试对象保存到服务器中。
但是,当我尝试从服务器查询对象时,没有任何反应。我的查询出了什么问题?
var query = new Parse.Query("Test");
query.find({
success: function (results) {
alert("Query SUCCESS");
},
error: function (error) {
alert("Query Error:" + error);
}
});
答案 0 :(得分:0)
解析服务器查询的正确语法:
var query = new Parse.Query("Client");
query.find()
.then(function(results) {
alert("SUCCESS");
})
.catch(function(error) {
alert("ERROR");
});