我正在尝试制作一个新的骨干模型(在Knockback内工作),我目前正在尝试使用RESTful后端服务器设置它。问题是,当尝试使用objects .sync()时,URL不被接受。但是,它在执行objects .fetch()时正常工作,并正确地从指定的URL提取数据。我哪里做错了?
/**
* Objectives model
*/
var Objective = Backbone.Model.extend({
url: 'api/objective',
// Defaults
defaults: {
category: null,
weight: null,
name: null,
descriptor: null
}
});
/**
* Basic objectives collection
*/
var ObjectiveCollection = Backbone.Collection.extend({
model: Objective,
url: function() {
return "api/objective";
},
initialize: function(models,options) {}
});
实际使用这个集合的代码可以在这里看到:
var objectives = new ObjectiveCollection();
objectives.fetch();
var view_model = {
objectives: kb.collectionObservable(objectives, {view_model: kb.ViewModel})
};
ko.applyBindings(view_model, $('#objectives').get(0));
// Listener for the click button
$('#click').click(function() {
counter++;
var objective_model = new Objective({name: Math.random(), descriptor: 'What up'});
objectives.add(objective_model);
objectives.sync();
});/**/
不要在没有参数的情况下调用sync()
。Sync需要参数,这就是为什么你会得到一个错误,但更重要的是,你可能想做的是objective_model.save()
。