我正在成功执行此查询:
var name = ko.observable().extend({
required: {
onlyIf: function () {
return ($('#name').is(':visible'));
},
message: '*** Required'
}
});
来自这个领域:
var Photo = Parse.Object.extend("Photo");
var query = new Parse.Query(Photo);
query.equalTo("SOMEID", parseInt(SOMEID));
query.limit(25);
query.descending("createdAt");
query.find({
success:function(results) {
// Some code to work with the objects returned
},
error: function(error) {
console.log(error);
}
});
但完全相同的查询从另一个页面失败:
mydomain.com/index.html
错误是:
mydomain.com/someother.html
可能不是域名问题,但我有点迷失为什么我从解析中收到此错误。有什么想法吗?