gpt4 book ai didi

javascript - 下划线模板显示对象数组通过_.each

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:53:41 25 4
gpt4 key购买 nike

我无法使用 _.template 为每个评论循环打印出一个简单的。

<% _.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> <% }); %>

未捕获的类型错误:对象 [object Array] 没有方法 'get'

<% _.each([comments], function(i) { %>  <p><%= comment %></p> <% }); %>

空白

最佳答案

假设 comments 是模型中的一个数组:

<% _.each(comments, function(comment) { %>  
<p><%= comment.comment %></p>
<% }); %>

关于javascript - 下划线模板显示对象数组通过_.each,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16070685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com