博客中的ActionController :: UrlGenerationError #index

时间:2016-05-04 00:05:15

标签: ruby-on-rails crud

我正在尝试为博客

完成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

感谢您的帮助!

0 个答案:

没有答案