开发者

undefined method `topics_path'

开发者 https://www.devze.com 2023-01-11 04:45 出处:网络
Not sure what this means and why... I got the undefined method error when I try to go to http://localhost:3000/forums, and after I generate my first forum.

Not sure what this means and why... I got the undefined method error when I try to go to http://localhost:3000/forums, and after I generate my first forum.

ActionView::TemplateError (undefined method `topics_path' for #<ActionView::Base:0x10319f2e0>) on line #25 of app/views/forums/index.html.erb:

The area of code the error refers to is: -

<!-- First column will be the forum name-->
<div class="forumname">
  <%= link_to forum.name, topics_path(forum) -%>
</div>

The relevant section of the route.rb file is: -

map.resources :foru开发者_开发知识库ms do |forum|
  forum.resources :topics do |topic|
    topic.resources :posts
  end
end


You have topics nested under forums in your routes, so your url helper will be forum_topics_path(forum, topic). Notice you have to pass the forum and topic both to the helper.

0

精彩评论

暂无评论...
验证码 换一张
取 消