我正在使用骨干试图从firebase获取数据,我收到了这个错误。
我相信我需要在某处设置标题,以便它接受跨源请求,但我不确定我是怎么做的?
var ItemList = Backbone.View.extend({
el: '.item_list',
render: function() {
var that = this;
var user = new Items();
user.fetch({
success: function() {
that.$el.html('Hello');
}
});
}
});
答案 0 :(得分:1)
最后发现解决方案就像在网址中添加“.json”一样简单
例如:
https://podfuse.firebaseio.com/posts/mypost.json
或
https://podfuse.firebaseio.com/posts.json
希望能帮助其他人解决这个问题