没有路由匹配{:action =>" index",:controller =>" categories"}

时间:2014-11-04 13:41:19

标签: ruby-on-rails indexing

我坚持将所有类别存储到数据库中的实例。

以下是说明: 在categories_controller.rb中,在def index下,为类别编写索引方法的主体。 记得密切关注这个例子并结束。命中运行。

这是我的代码:

class CategoriesController < ApplicationController

  def index
    @categories = Category.all
  end

  def show
  end

  def new
  end

  def edit
  end

  def delete
  end

  private 
  def category_params
    params.require(:category).permit(:name, :thumburl)
  end
end

我做错了什么?

1 个答案:

答案 0 :(得分:1)

您应该将其添加到config/routes.rb

resources :categories

我还建议学习一些Rails基础知识。