我正在使用 stackmob 几天,它仍然是新的,并且网络上没有太多信息。我遇到了这个问题:我不会在我的stackmobe“db”中获取所有商店名称的列表,该方案称为store,这是我正在使用的代码:
var Store = StackMob.Model.extend({
schemaName: 'store'
});
var stores = new Store();
stores.fetch({
success: function(collection) {
//after we've gotten all the Todo items from StackMob, let's see what we have!
console.debug(collection.toJSON());
alert(collection.toJSON());
},
error: function(collection, response){
alert(collection.toJSON());
}
});
我在我的 chrome 日志中收到此错误:
OPTIONS http://api.stackmob.com/store 400 (Bad Request)
XMLHttpRequest cannot load http://api.stackmob.com/store. Origin http://127.0.0.1:4567 is not allowed by Access-Control-Allow-Origin.
任何帮助,将不胜感激!