私はレールに不慣れで、チュートリアルに従っています。同じコードを使用していますが、ビューに「削除」リンクを含めると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 %>
どんな助けでも適用されます