我正在尝试制作一个新的 Backbone 模型(在 Knockback 中工作),我目前正在尝试使用 RESTful 后端服务器对其进行设置。问题是尝试使用objectives.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();
});/**/