扩展该model.save
方法的最佳方法是什么?
我需要添加新方法将相同的数据发布到后端。即:played
方法应该请求(通过POST)apiurl/model/:id/played
例如:
var Game = Backbone.Model.Extend({
baseUrl: '/games/',
played: function(){
this.url = this.baseUrl + this.id + '/played'
this.save();
}
});
var game = new Game({id:3234}); //is only an example, instances are created before previuosly
game.played();
这种方式有效,但请求是 GET。此外,如果这save()
没有发送请求中的所有属性,那将是完美的。
添加信息: 由于我必须与跨域 api 交互,因此我扩展了同步方法以使用 JSONP。此外,我还添加了一些安全说明。
//backbone sync
Backbone._sync = Backbone.sync;
Backbone.sync = function(method, model, options) {
//network
options.timeout = 10000;
options.dataType = "jsonp";
//security
if(_conf.general.accessToken){
var ak = _conf.general.accessToken,
url = model.url,
linker = url.indexOf('?') === -1 ? '?':'&';
model.url = url + linker + 'accessToken=' + ak+'&callback=';
}
//error manager
var originalError = options.error || function(){};
options.error = function(res){
originalError(res.status, $.parseJSON(res.responseText));
};
//call original Method
Backbone._sync(method, model, options);
};