rails中的路由问题

时间:2011-04-04 21:44:12

标签: ruby-on-rails ruby-on-rails-3 routing rails-routing

//请参阅下面的更新

错误:

No route matches {:controller=>"conversations", :action=>"reply", :id=>nil, :board_id=>nil}

参数dump:

{"board_id"=>"2",
 "id"=>"3"}

日志:

Started GET "/boards/2/conversations/3/reply" for 127.0.0.1 at Mon Apr 04 23:40:59 +0200 2011
  Processing by ConversationsController#reply as HTML
  Parameters: {"board_id"=>"2", "id"=>"3"}
  Board Load (0.1ms)  SELECT "boards"."id" FROM "boards" WHERE ("boards"."id" = 2) LIMIT 1
  Board Load (0.6ms)  SELECT "boards".* FROM "boards" WHERE ("boards"."id" = 2) LIMIT 1
Rendered conversations/_reply_form.html.erb (1.3ms)
Rendered conversations/reply.html.erb within layouts/application (9.4ms)
Completed   in 30ms

ActionView::Template::Error (No route matches {:controller=>"conversations", :action=>"reply", :id=>nil, :board_id=>nil}):
    1: <%= form_for(@comment, :url => reply_board_conversation_url(:board_id=>@board_id, :id=>@conversation_id)) do |f| %>
    2:   <% if @comment.errors.any? %>
    3:     <div id="error_explanation">
    4:       <h2><%= pluralize(@comment.errors.count, "error") %> prohibited this reply from being saved:</h2>
  app/views/conversations/_reply_form.html.erb:1:in `_app_views_conversations__reply_form_html_erb__999049254_2171331720_2303070'
  app/views/conversations/reply.html.erb:4:in `_app_views_conversations_reply_html_erb___838091718_2171408600_0'

Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (982.1ms)
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (1001.7ms)

在我的routes.rb中,它的:

  get '/boards/:board_id/conversations/:id/reply' => "conversations#reply", :as => :reply_board_conversation
  post '/boards/:board_id/conversations/:id/reply' => "conversations#save_reply", :as => :reply_board_conversation

  resources :boards do 
    resources :conversations
  end

有谁知道我做错了什么?提前谢谢!

//更新:

想出了参数。但是,现在我们有了一个新错误..请参阅输出:

Started GET "/boards/2/conversations/3/reply" for 127.0.0.1 at Tue Apr 05 11:29:52 +0200 2011
  Processing by ConversationsController#reply as HTML
  Parameters: {"board_id"=>"2", "conversation_id"=>"3"}
  Board Load (0.2ms)  SELECT "boards"."id" FROM "boards" WHERE ("boards"."id" = 2) LIMIT 1
  Board Load (0.2ms)  SELECT "boards".* FROM "boards" WHERE ("boards"."id" = 2) LIMIT 1
Rendered conversations/_reply_form.html.erb (4.3ms)
Rendered conversations/reply.html.erb within layouts/application (6.3ms)
Completed   in 26ms

ActionView::Template::Error (undefined method `model_name' for NilClass:Class):
    1: <%= form_for(@comment, :url => reply_board_conversation_url(:board_id=>@board.id, :id=>@conversation_id)) do |f| %>
    2:   <% if @comment.errors.any? %>
    3:     <div id="error_explanation">
    4:       <h2><%= pluralize(@comment.errors.count, "error") %> prohibited this reply from being saved:</h2>
  app/views/conversations/_reply_form.html.erb:1:in `_app_views_conversations__reply_form_html_erb__999049254_2174448800_2303070'
  app/views/conversations/reply.html.erb:1:in `_app_views_conversations_reply_html_erb___838091718_2174498080_0'

Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (757.4ms)
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (774.2ms)

2 个答案:

答案 0 :(得分:1)

您提供的日志表明@board_id和@conversation_id变量为零。

确保您实际在@board_id的回复操作中设置@conversation_idConversationsController的值。我怀疑你要么填充board_id要么忘记完全做@board_id = params[:board_id]这样的事情。

<强>更新 要回答问题的下一部分,我猜测@comment尚未实例化。在控制器操作的某处,您应该执行以下操作:

@comment = Comment.new(params[:comment]

这应该从任何现有表单数据创建注释,如果没有任何表单数据,则应创建新注释。

答案 1 :(得分:0)

您的@board_id@conversation_id变量都是零,正如错误消息中所述:

No route matches {:controller=>"conversations", 
                  :action=>"reply",
                  :id=>nil,
                  :board_id=>nil
                 }

请注意:id:board_id参数。