我正在尝试渲染嵌套视图。说我有视图 BigView 和 SmallView
<script type="text/template" id="big-template">
<% _.each(smallViews, function (smallView) { %>
<%= smallView.$el.html() %>
<% }); %>
</script>
<script type="text/template" id="small-template">
<div>
<%- name %>
</div>
</script>
我从 调用 render bigView
,它使一切都很好,包括它的 children smallViews
。
如何在smallView
不渲染的情况下单独更新(渲染)a bigView
?