いくつかのドキュメントを読んでBackbonejsを試していました。これは、クライアント側のMVCフレームワークです。ビュー内で、テンプレートをコンパイルしてレンダリングします(DOMにアタッチするか、操作を行います)。バックボーンには、テンプレート要素であるアンダースコアjsの依存関係があります。
Bboneを使用すると、ビューを操作するときel
に画像が表示されます。私の理解でel
は、それはを参照していDOM Object
ます。domオブジェクトが割り当てられていない場合は、空のdivと見なされます。
var Choose_view = new SearchView({el:$( "#choose_me")});
したがって、上記の場合、choose_viewが呼び出されると、IDがchoose_meのdivが操作されます。これまでのところ良いですが、時系列で以下に起こっていることは何ですか、私は得ることができませんでした、また冗長性はありますか、クエリのコメントを読んでください:
// the div with id search_container will be picked up by el
<div id="search_container"></div>
<script type="text/javascript">
SearchView = Backbone.View.extend({
initialize: function(){
this.render();
},
render: function(){
//1. Compile the template using underscore, QUESTION: **what does this mean**?
var template = _.template( $("#search_template").html(), {} );
//2. Load the compiled HTML into the Backbone "el"
this.el.html( template );
}
});
// QUESTION: **When in 2. we have already mentioned, el, can we not over there
provide the div element?**
var search_view = new SearchView({ el: $("#search_container") });
</script>
<script type="text/template" id="search_template">
<label>Search</label>
<input type="text" id="search_input" />
<input type="button" id="search_button" value="Search" />
</script>