我在 http://guides.rubyonrails.org/getting_started.html 做Rails入门指南,我读到了5.8的最后一部分。我的输出包含这个额外的行,我不知道它来自哪里。有人可以帮助我吗?
[#<Article id: 1, title: "Test", text: "tests", created_at: "2017-01-17 20:01:14", updated_at: "2017-01-17 20:01:14">]
教程代码 -
<h1>Listing articles</h1>
<table>
<tr>
<th>Title</th>
<th>Text</th>
</tr>
<% @articles.each do |article| %>
<tr>
<td><%= article.title %></td>
<td><%= article.text %></td>
<td><%= link_to 'Show', article_path(article) %></td>
</tr>
<% end %>
</table>
我的代码是这样的——
<div>
<%= @articles.each do |article| %>
<div>
<div>Title:</div>
<div><%= article.title %></div>
<div>Text:</div>
<div><%= article.text %></div>
<div><%= link_to 'Show', article_path(article) %></div>
</div>
<% end %>
</div>
删除=
<%= @articles.each do |article| %>
应该是
<% @articles.each do |article| %>
只需将<%= @articles.each do |article| %>
替换为<% @articles.each do |article| %>
解释:在 Ruby 中,您不必指定返回值。将自动返回每个方法的最后一个语句。 因此,@articles.each
将返回完整的数组。erb 标签<%=
只是打印它。