我有一个“类别”资源,并且正在尝试使用link_to
方法和_path
路由在其 index.html.erb 文件中链接到 Categories#show。当我在浏览器中查看索引时,我看到以下错误:
Routing Error No route matches {:action=>"show", :controller=>"categories"}
但是我确实在我的 Categories 控制器中定义了一个显示操作,并且删除 URI 部分link_to
会导致索引正常显示而不会引发异常!我不知道URI哪里出错了。
这是/categories/index.html.erb:
<h1>My Links</h1>
<% @categories.each do |c| %>
<h2><%= link_to "#{c.category}", category_path %></h2>
<p><%= c.description %></p>
<% end %>
<%= link_to "Add new category", new_category_path %>
这是/categories/show.html.erb:
<h1><%= @category.category %></h1>
<p><%= @category.description %></p>
<p><%= link_to "Back to index", root_path %></p>
这是/config/routes.rb:
LinkManager::Application.routes.draw do
resources :categories do
resources :links
end
root :to => 'categories#index'
这是 /controllers/categories_controller.rb 的一部分:
class CategoriesController < ApplicationController
def index
respond_with(@categories = Category.all)
end
def show
@category = Category.find(params[:id])
end
这是运行的结果rake routes
(把它放在 pastebin 上,因为我不知道如何在这里很好地格式化它):rake routes
任何人都可以发现有什么问题吗?我在这里查看了许多其他类似的路由问题,但无法从他们那里得到解决方案。谢谢你。