2

我正在尝试嵌套资源:

我的路线:

  resources :conversations do
    resources :replies do
      resources :comments
    end
  end

我能够获得用于对话的回复表单,但现在我增加了获取评论以处理回复的额外复杂性。

整个表格都在对话显示路径下。

<%= form_for([@conversation, @reply]) do |f| %>
    <%= render 'shared/response_form', f: f %>
    <%= f.submit "Reply", class: "btn btn-large btn-primary" %>
<% end %>

上面的回复表单可以正常工作并且没有错误,下面的评论表单会出错:

未定义的方法“reply_comments_path”

<%= form_for([@reply, @comment]) do |f| %>
    <%= render 'shared/response_form', f: f %>
    <%= f.submit "Comment", class: "btn btn-large btn-primary" %>
<% end %>

这是我的对话控制器,这是我认为问题所在:

  def show
    @conversation = Conversation.find(params[:id])
    @replies = @conversation.replies
    @reply = current_user.replies.build
    #If I change the above line to @conversations.replies.build 
    #it breaks the ability to show replies above the form.

    @comments = @reply.comments
    @comment = @reply.comments.build    
  end

但是,其他人建议这样做:

<%= form_for([@conversation, @reply, @comment]) do |f| %>
    <%= render 'shared/response_form', f: f %>
    <%= f.submit "Comment", class: "btn btn-large btn-primary" %>
<% end %>

但它只是以一个路由错误结束:

No route matches {:controller=>"comments", :format=>nil, :conversation_id=>#<Conversation id: 3, content: "Goes here.", user_id: 1, created_at: "2012-12-10 21:20:01", updated_at: "2012-12-10 21:20:01", subject: "Another conversation">, :reply_id=>#<Reply id: nil, content: nil, user_id: 1, created_at: nil, updated_at: nil, conversation_id: nil>}

当我尝试制作新表单时,我总是会遇到这个未定义的方法路径错误,而且我总是设法忘记我做错了什么。答案似乎从来都不是路线。

编辑:

在控制器的创建部分下,我有:

@replies = @conversation.replies
@reply = current_user.replies.build
#If I change the above line to @conversations.replies.build 
#it breaks the ability to show replies above the form.

我不知道为什么 @reply = @conversation.replies.build 会破坏显示现有回复的能力。我收到一条错误消息,说它无法将 nil 转换为数字,并且看不到 reply.created_at 或 reply.content。无论是什么原因,这都可能是我为什么会遇到这个问题的线索。但是,在我正在使用的回复控制器中

@reply = conversation.replies.build(content: params[:reply][:content], user_id: current_user.id)

编辑:

补充一下,Stackoverflow 的功能与我在这里想要实现的非常相似,只是您可以对问题和答案发表评论。

4

1 回答 1

3

查看错误的结尾:

... :reply_id=>#<Reply id: nil, content: nil, user_id: 1, created_at: nil, updated_at: nil, conversation_id: nil>}

@comment如果@reply未保存,您无法创建表单。您需要@reply在创建之前坚持下去@comment

如果您尚未验证回复模型,请尝试对显示操作进行此简单测试:

# @reply = current_user.replies.build
@reply = current_user.replies.create

答案见评论。

于 2012-12-11T16:58:15.017 回答