ネストされたビューをレンダリングしようとしています。ビュー 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
をレンダリングせずに を個別に更新 (レンダリング) するにはどうすればよいbigView
ですか?