铁轨上的红宝石很新。我创建了一个名为page的脚手架,它给了我一些预先定义的页面。我还制作了一个索引,让我可以查看我的页面上创建的内容。我的问题是如何改变表格......
<h1>Listing recipes</h1>
<tbody>
<% @recipes.each do |recipe| %>
<tr>
<td><%= recipe.username %></td>
<td><b><%= recipe.title %></b></td>
<td><%= recipe.recipe %></td>,
<td><%= link_to 'Show', recipe %></td>
<td><%= link_to 'Edit', edit_recipe_path(recipe) %></td>
<td><%= link_to 'Destroy', recipe, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'Add New Recipe', new_recipe_path %>
以上所有内容都为我做了很多...我试图打破桌面,以便recipe.recipe显示在我尝试过的新线上没有成功!我得到的结果和以前一样......
示例:
<tbody>
<% @recipes.each do |recipe| %>
<tr>
<td><%= recipe.username %></td>
<td><b><%= recipe.title %></b></td>
</tr>
<tr>
<td><%= recipe.recipe %></td>,
<td><%= link_to 'Show', recipe %></td>
<td><%= link_to 'Edit', edit_recipe_path(recipe) %></td>
<td><%= link_to 'Destroy', recipe, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
有什么建议吗?