我已设法使用REST API到fetch()
数据,其中网址包含最少的参数(并使用GET
)。
如何通过POST
请求检索集合?
答案 0 :(得分:63)
另请注意,fetch支持Jquery.ajax参数,因此您可以在调用中轻松设置type = post。
Messages.fetch({data: {api_key: 'secretkey'}, type: 'POST'});
答案 1 :(得分:2)
您可能需要扩展Collection对象以安装自己的提取约定。这样做,您可能会提供自己的提取功能。类似的东西:
fetch : function(options) {
options || (options = {});
var model = this;
var success = function(resp) {
if (!model.set(model.parse(resp), options)) return false;
if (options.success) options.success(model, resp);
};
var error = wrapError(options.error, model, options);
(this.sync || Backbone.sync)('create', this, success, error);
return this;
}
它使用'create'而不是'read'。乍一看,这是我首先尝试的,尽管可能有一种更优雅的方式。
这种方法的缺点是您在应用程序中基本上拥有框架代码,如果框架发生更改,您可能会遇到问题。您最好将此更改划分为单独的层,以便使用新的框架版本轻松更新。
答案 2 :(得分:2)
Backbone.sync是用于通过模型与服务器交互的函数。您可以提供自己的实现,为“读取”方法而不是GET发出POST请求。见http://documentcloud.github.com/backbone/#Sync
答案 3 :(得分:1)
try {
// THIS for POST+JSON
options.contentType = 'application/json';
options.type = 'POST';
options.data = JSON.stringify(options.data);
// OR THIS for GET+URL-encoded
//options.data = $.param(_.clone(options.data));
console.log('.fetch options = ', options);
collection.fetch(options);
} catch (excp) {
alert(excp);
}