0

我有一个“类别”资源,并且正在尝试使用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

任何人都可以发现有什么问题吗?我在这里查看了许多其他类似的路由问题,但无法从他们那里得到解决方案。谢谢你。

4

2 回答 2

2

尝试替换:

<h2><%= link_to "#{c.category}", category_path %></h2>

和:

<h2><%= link_to "#{c.category}", category_path(c) %></h2>

看?您必须为category_path.

或者只是使用魔法:

<h2><%= link_to "#{c.category}", c %></h2>

顺便说一句,这里插值的目的是什么:"#{c.category}"?还c.category不够吗?

于 2012-11-12T16:55:48.287 回答
0

好吧,我认为如果您添加其他路线以显示它有效,请执行以下操作:

在浏览器中执行此操作:

localhost:3000/categories/show

在你的routes.rb

match "/categories/show/:id" => categories#show

我们的 ruby​​ 版本和 rails 版本是什么?

于 2012-11-12T16:53:57.267 回答