0

我怎样才能解决这个问题?

<%= if(comments.length) { %>
  <%=_.each(comments, function (comment) {%>
    <div><%=comment.message%></div>
  <%=});%>
<%=}%>

我可以在 PHP 中做到这一点,例如:

<?php if(count($comments) { ?>
  <?php foreach ($comments as $comment){ ?>
     <div><?=$comment->message?></div>
  <?php } ?>
<?php } ?>

谢谢

4

2 回答 2

2

也许这就是您正在寻找的...从s
中删除评估s=<%=

<% if(comments.length) { %>
  <% _.each(comments, function (comment) {%>
    <div><%=comment.message%></div>
  <% }); %>
<% } %>
于 2012-07-14T14:45:44.097 回答
2
<% if(comments.length) {
  _.each(comments, function (comment) { %>
    <div><%=comment.message%></div>
  <% });
} %>
于 2012-07-14T14:45:55.723 回答