这是 Cloudboost 查询示例:
var query = new CB.CloudQuery("Student");
query.equalTo('age', 21); //find all Students who age is 21
query.find({
success: function(list){
//list is an array of CloudObjects
},
error: function(err) {
//Error in retrieving the data.
}
});
我的问题是:我如何显示查询的内容?当我这样做时
document.write(query);
我明白了
[object, Object]
如果我在论坛中查看它应该可以解决
document.write(JSON.stringify(list));
但这不起作用。我在摩纳卡(Phonegap)。