_.template を使用した単純な for each コメント ループの出力に問題があります。
<% _.each([comments], function(i) { %> <p><%= i %></p> <% }); %>
[オブジェクトオブジェクト]を印刷します
<% _.each([comments], function(i) { %> <p><%= JSON.stringify(i) %></p> <% }); %>
プリント:
[{"comment":"Mauris quis leo at diam molestie sagittis.","id":263,"observation_id":25}]
私がこれまでに試したこと:
<% _.each([comments], function(i) { %> <p><%= i.comment %></p> <% }); %>
空欄
<% _.each([comments], function(i) { %> <p><%= i.get('comment') %></p> <% }); %>
キャッチされていない TypeError: オブジェクト [オブジェクト配列] にメソッド 'get' がありません
<% _.each([comments], function(i) { %> <p><%= comment %></p> <% }); %>
空欄