我期待这个例子Introduction to Backbone.js Part 2。
在此示例中,单击按钮时调用render函数:
events: {
"click button": "render"
},
如何在加载模型时调用render函数?
var view = new View({ model: model });
答案 0 :(得分:1)
您只需将以下行this.render();
添加到View类
initialize: function()
{
this.template = $('#list-template').children();
this.render();
},