问题描述: routes.rb 文件中内容
resources :articles do resources comments do end
model 关系 atricles has_many comments comment belongs_to atricle
show.html.erb 中的内容是这样
<% @aticle.comments.each do |comment| %>
<%= comment.content %>|<%= link_to‘编辑’,edit_article_comment_path(@artilce,comment)def edit @article = Article.find(params[:article_id]) @comment = @article.comments.find(params[:id]) end
edit.html.erb
<% form_for(@comment) do |f| %> ........ <% end %> 问题 当我点击编辑页面的时候,提示我 undefined method `project_path'