-2
<%= @posts.each do |post| %>
<div class='post_wrapper'>
<h2 class="title"><%= link_to post.title, post%></h2>
<p class="date">
<%= time_ago_in_words(post.created_at%>ago
</p>
</div>
<% end %>
我收到一個錯誤,說「意外的關鍵字結束,期待')''.freeze;」當我重新加載我的本地主機上面的代碼。不知道爲什麼它會拋出這個錯誤。語法錯誤,意外的關鍵字
我有另一個文件,也有<%end%>,我沒有得到相同的錯誤。
謝謝!我怎麼錯過了! –