我是 Rails 的新手。
我创建了一个 Web 应用程序,我可以通过/posts/123/comments/
or访问/posts/123/comments/new
,但我不知道如何在索引视图中使用 link_to 来显示具体评论,当我尝试链接它时,出现“无路由”或“未定义符号” .
我在模型中定义的帖子和评论之间存在嵌套的 have_many 关系,并且routes.rb
在 post_comments GET /posts/:post_id/sensors(.:format)
comments#index
我执行 rake 路由时出现。
我该怎么做?