6

ええ、問題は、次のようなネストされたリソースを作成したことです。

resources :albums do 
  resources :elements
end

rake routes コマンドは次のように表示します。

album_element GET /albums/:album_id/elements/:id(.:format) elements#show

したがって、.../albums/1 にいるときは、.../albums/1/elements に向かうことができます

これにより、要素コントローラーのインデックス アクションが開始されます。問題ありません。しかし、index.html.erbを編集すると

<%= link_to 'Show', album_element_path %>

次のようなエラーが発生しました。

Started GET "/albums/1/elements" for 176.221.47.67 at Tue Oct 09 14:25:39 +0200 2012
Processing by ElementsController#index as HTML
Parameters: {"album_id"=>"1"}
Rendered elements/index.html.erb within layouts/application (9.2ms)
Completed 500 Internal Server Error in 123ms

ActionController::RoutingError (No route matches {:controller=>"elements", :action=>"show"}):
app/views/elements/index.html.erb:29:in `_app_views_elements_index_html_erb___13604879__168097178'
app/views/elements/index.html.erb:18:in `each'
app/views/elements/index.html.erb:18:in `_app_views_elements_index_html_erb___13604879__168097178'
app/controllers/elements_controller.rb:7:in `index'

つまり、ルートが一致しないと表示されています...しかし、実際にはレーキルートに表示されていますか? 私は何を間違っていますか?

4

1 に答える 1

7

album_element_path に必要な 2 つの引数を指定する必要があります。

<%= link_to 'Show', album_element_path(@album, @element) %>
于 2012-10-09T13:11:01.287 に答える