私はAddy Osmani によるBackbone.js アプリケーションの開発を学んでおり、テンプレートの部分に固執しています。
ここに私のテンプレートがあります:
<script type="text/template" id="item-template">
<div class="view">
<input class="toggle" type="checkbox" <%= completed ? 'checked' : '' %>>
<label><%= title %></label>
<button class="destroy"></button>
</div>
<input class="edit" value="<%= title %>">
</script>
これが私のバックボーン ビューです。
var TodoView = Backbone.View.extend({
tagName: 'li',
className: 'todo_list',
todoTpl: _.template($('#item-template').html()),
events:{
'dblclick label': 'edit',
'keypress .edit':'updateOnEnter',
'blur .edit':'closed'
},
render: function(){
_.bindAll(this, 'edit','upadateOnEnter','close');
this.$el.html(this.todoTpl(this.model.toJSON()));
this.input = this.$('.edit');
return this;
},
edit: function(){},
updateOnEnter: function(){},
closed: function(e){}
});
var todoView = new TodoView();
console.log(todoView.el);
結果がどうなるかわかりませんが、id item-template のテンプレート内の HTML を期待していましたが、取得できるのは
<li class="todo_list"></li>
私はどこか間違っていると思います、私はそれを理解できませんでした。
助けてください。