バックボーンを使用してページのすべての投稿を読み込んでいます。「すべてのコメントを取得」リンクをクリックすると、投稿のコメントが読み込まれます。Ajax 呼び出しからすべてのコメントを取得しています。
Social.Views.StreamsIndex = Backbone.View.extend({
comment_template: JST['streams/comment'],
comment_displayall: function(data, post_id) {
this.$("#comments").html(this.comment_template({
comment: data // Here data is array
}));
}
});
私は現在ループを持っているcomment.jst.ejsファイルを持っていますが、それを表示する必要があります
<% _.each(comment.comments,function(comment){ %> // I want to get rid of this Line
<div class="stream_comment">
<div class="stream_commentphoto">
<a><img src="<%= comment.actor.thumbnail.url %>"></a>
</div>
<div class="stream_comm-content">
<a href="#"><h5><%= comment.actor.displayName %></h5> </a>
<p><%= comment.content %></p>
</div>
</div>
<%}%>
ビューにループを追加して、コメントテンプレート内のループを取り除くにはどうすればよいですか?