index.html.haml
1 = link_to "詳細", card_path(card.id)
viewでこのように書いていて、詳細を押すと、show.html.hamlに遷移したいのですが、
NameEroorが出てしまいます。
cars_controller
1 def show 2 @card = Card.find(params[:id]) 3 end
コントローラではこのように書いています。
(card.id)の部分が何かエラーを起こしているのでしょうか?
Prefix Verb URI Pattern Controller#Action root GET / cards#index cards GET /cards(.:format) cards#index POST /cards(.:format) cards#create edit_card GET /cards/:id/edit(.:format) cards#edit card GET /cards/:id(.:format) cards#show DELETE /cards/:id(.:format) cards#destroy
pathはあっていると思います。
どなたかお願い致します。。。
あなたの回答
tips
プレビュー