Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
358 views
in Technique[技术] by (71.8m points)

mysql - 我的注释代码有什么问题?(What is wrong with my code on making comments?)

This is my code on making comments.

(这是我的注释代码。)

It turns out that it has a reference error.

(事实证明,它具有参考错误。)

It says that comments is not defined.

(它说注释未定义。)

What should I change?

(我应该改变什么?)

<ul>
  <% for (var i=0; i<comments.length; i++){ %>
    <li><%= comments[i].comment %> /
    <%= moment(comments[i].inserted).format('YYYY-MM-DD h:mm:ss a') %> </li>
  <% } %>
</ul>

<form method="post" action="news/comment">
  <input type="hidden" name="articleId" value="<%= news.id %>">
  <textarea name="comment"></textarea>
  <input type="submit" value="????">
</form>

<div class="row">
  <div class="col">
    <hr>
  </div>
</div>
  ask by potential-pancake translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

您需要定义comments变量,它应该是array


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...