Backbone.js Model to View Connection
It’s not implicit at all, it’s explicit in this line right here: var view = new TodoView({model: todo}); This is creating a new TodoView view and setting its model property to the addOne function’s only parameter (todo, which is a model). Whenever a new model is added to the Todos collection, the addOne method is … Read more