我正在尝试为博客
完成CRUD操作当我运行以下代码时,出现错误ActionController::UrlGenerationError in Blogs#index
这是我的控制器
before_action :find_post, only: [:show, :edit, :update, :destroy]
def find_post
@blog = Blog.find(params[:id])
end
def destroy
@blog.destroy
redirect_to root_path
end
在我看来,我有链接<%= link_to "Update Post", edit_blog_path(@blog) %>
就像我说的,当我运行代码时,我收到错误ActionController::UrlGenerationError in Blogs#index
感谢您的帮助!