Railsでの部分的なレンダリングに問題があります。
これは私のroutes.rbにあります:
namespace :blog do
resources :posts, only: [:index, :show] do
resources :comments, only: [:new, :create]
end
end
これは私のブログです::PostsController:
def show
@post = Post.find(params[:id])
@comments = @post.comments
end
これは/views/blog/posts/show.html.erbにあります
<%= render @comments %>
_comment.html.erbパーシャルは/views/ blog /comments/にあります
エラーメッセージは次のとおりです。
Missing partial blog/comments/comment with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee]}. Searched in: * "/home/mar1221/ruby/my_site/app/views"