我在这里有这个工作代码。
我之前在下划线模板中有一个错误,我注意到,模型没有被保存到数据库中,因为由于模板错误,渲染无法正常工作。这应该意味着 model.save() 在渲染后被调用。或者,collections.create() 完成了所有的保存工作,而 model.save() 根本没有被调用?
下面的代码究竟是如何将模型数据保存在数据库中的?
$(function(){
Todos = new TodoList.Collections.Todos;
TodoList.Views.TodoView = Backbone.View.extend({
tagName: "li",
events: {},
initialize: function(){},
template: _.template('<li> <%= task %></li>'),
render: function(){
var todo = this.model.toJSON();
//alert("render: " + JSON.stringify(todo));
return this.template(todo);
}
});
TodoView = TodoList.Views.TodoView;
TodoList.Views.AppView = Backbone.View.extend({
el: $("#todo_app"),
events: {
"submit form#new_todo": "createTodo",
"click div.new-todo-btn" : "showFormNew"
},
showFormNew: function(){
$(".new-todo-form").toggle();
},
initialize: function(){
_.bindAll(this, 'addOne', 'addAll','render');
Todos.bind("add", this.addOne);
Todos.bind("reset", this.addAll);
Todos.bind("all", this.render);
Todos.fetch();
},
addOne: function(todo){
var view = new TodoView({model: todo});
this.$("#todo_list").append(view.render());
},
addAll: function(){
Todos.each(this.addOne);
},
newAttributes: function(event){
var new_todo_form = $(event.currentTarget).serializeObject();
return {
'task': new_todo_form["todo[task]"],
'done': new_todo_form["todo[done]"]
};
},
createTodo: function (e){
e.preventDefault();
var params = this.newAttributes(e);
Todos.create(params);
}
});
});