我有一个带有以下 URL“http://localhost:8080/api/menu/1/featured”的主干集合对象。我正在尝试执行 fetch 操作以从 url 检索集合并解析它。但是,在服务器端,我看到的这个请求的方法类型是 OPTIONS。服务器只假设支持 GET 方法。我不确定 Backbone 如何确定要使用的方法类型,以及为什么有时会随机更改为 OPTIONS 方法类型。我正在使用 Node.js 服务器来处理请求。下面的代码几乎就是我所做的。
var FeaturedCollection = Backbone.Collection.extend({
model:FeaturedContent,
url:function () { return url_featured; },
parse:function (response) {
console.log(response);
return response;
}
});
var featuredCollection = new FeaturedCollection();
featuredCollection.fetch();
请帮忙,谢谢!