我正在尝试通过几个文档阅读 Backbonejs。它是客户端的 MVC 框架。在视图中,我们编译模板并渲染它们(将它们附加到 DOM,或进行一些操作)。Backbone 有一个下划线 js 的依赖,这是模板的东西。
使用 Bbone,当操作视图时,el
图像就出现了。我的理解el
是它引用了DOM Object
. 如果没有为其分配 dom 对象,则它假定为空 div。
var choose_view = new SearchView({ el: $("#choose_me") });
所以在上面的例子中,id为choose_me的div会在调用choose_view时被操作。到目前为止一切都很好,但是按时间顺序发生的事情是什么,我无法得到,还有任何冗余,请阅读查询评论:
// 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>