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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…