我是 Rails 新手,我正在学习教程。我有相同的代码,但是当我在视图中包含“删除”链接时出现 NameError。
这是错误
NameError in Posts#index
undefined local variable or method `post' for #<#<Class:0x3a0c9b0>:0x3a0a220>
这是代码
<h1>Blog Posts</h1>
<% @posts.each do |post| %>
<h3><%= link_to post.title,post %></h3>
<p><%= post.body %></p>
<hr>
<% end %>
<%= link_to "Delete", post, :confirm => "Are you sure you want to delete this post?", :method => :delete %>
任何帮助都会得到帮助