English 中文(简体)
提交评论表时的错误
原标题:receive routing error upon submitting comment form

员额专栏认为,只有在第一点意见已经形成的情况下,才能增加评论,否则就会造成这种rou错:

No route matches {:action=>"show", :controller=>"posts", :view=>"comments"}

起站:

Started POST "/comments" for 127.0.0.1 at 2011-05-17 18:18:03 -0700
  Processing by CommentsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"BPeNvVJh+dLBhpiZK16phQHp7UV4MasPyQW6PL9VG8I=", "comment"=>{"post_id"=>"", "parent_id"=>"", "name"=>"", "content"=>"yo"}, "commit"=>"Reply"}
AREL (0.9ms)  INSERT INTO "comments" ("name", "content", "post_id", "created_at", "updated_at", "ancestry") VALUES (  ,  yo , NULL,  2011-05-18 01:18:03.445466 ,  2011-05-18 01:18:03.445466 , NULL)
Completed   in 133ms

ActionController::RoutingError (No route matches {:action=>"show", :controller=>"posts", :view=>"comments"}):
  app/controllers/comments_controller.rb:14:in `block (2 levels) in create 
  app/controllers/comments_controller.rb:9:in `create 

如果已经设立第一个职位评论

posts#show:

<%= render @post %>

<%= nested_comments @comments.arrange(:order => :created_at) %>

<%= render "comments/form" %>

the form:

<%= simple_form_for :comment, :url => { :controller => :comments, :action => "create" } do |f| %>
  <%= f.input :post_id, :required => false, :as => :hidden %>
  <%= f.input :parent_id, :required => false, :as => :hidden %>
  <%= f.input :name, :label => false, :placeholder => "Name (optional)", :required => false %>
  <%= f.input :content, :label => false, :placeholder => "Reply", :as => :text %>
  <%= f.button :submit, "Reply" %>
<% end %>

评论控制员:

def new
  @comment = Comment.new(:parent_id => params[:parent_id], :post_id => params[:post_id])
end

def create
  @comment = Comment.create(params[:comment])
  @comment.save
  respond_to do |format|
    format.html do
      if @comment.errors.present?
        render :new
      else
        redirect_to(post_path(@comment.post, :view => "comments"))
      end
    end
    format.js
  end
end

routes:

root :to => "posts#index"
resources :topics
resources :posts
resources :comments

图表:

create_table "comments", :force => true do |t|
  t.string   "name"
  t.text     "content"
  t.integer  "post_id"
  t.datetime "created_at"
  t.datetime "updated_at"
  t.string   "ancestry"
end

add_index "comments", ["ancestry"], :name => "index_comments_on_ancestry"

create_table "posts", :force => true do |t|
  t.string   "name"
  t.string   "title"
  t.text     "content"
  t.integer  "topic_id"
  t.datetime "created_at"
  t.datetime "updated_at"
end

create_table "topics", :force => true do |t|
  t.string   "name"
  t.datetime "created_at"
  t.datetime "updated_at"
end
最佳回答

我先试了,但试图取代

redirect_to(post_path(@comment.post, :view => "comments"))

• 在你控制下,采取行动:

redirect_to(post_path(:id => @comment.post_id, :view => "comments"))

如果上述工作不成功,我们就会尝试其他事情。 这似乎是你的问题所在。

问题回答

它认为,你的形式与实际评论相挂钩,因为它只是一个象征。 您的看法

<%= simple_form_for @comment, :url => { :controller => :comments, :action => "create" } do |f| %>
...

实际上,这应当使你能够把<代码>:url参数割裂开来。

<%= simple_form_for @comment do |f| %>

然后,你在控制器中确定<代码>@comment,并设定<代码>post_id。

@comment = Comment.new
@comment.post_id = @post.id




相关问题
rails collection_select vs. select

collection_select and select Rails helpers: Which one should I use? I can t see a difference in both ways. Both helpers take a collection and generates options tags inside a select tag. Is there a ...

SSL slowness in EC2

We ve deployed our rails app to EC2. In our setup, we have two proxies on small instances behind round-robin DNS. These run nginx load balancers for a dynamically growing and shrinking farm of web ...

Auth-code with A-Za-z0-9 to use in an URL parameter

As part of a web application I need an auth-code to pass as a URL parameter. I am currently using (in Rails) : Digest::SHA1.hexdigest((object_id + rand(255)).to_s) Which provides long strings like : ...

RubyCAS-Client question: Rails

I ve installed RubyCAS-Client version 2.1.0 as a plugin within a rails app. It s working, but I d like to remove the ?ticket= in the url. Is this possible?

activerecord has_many :through find with one sql call

I have a these 3 models: class User < ActiveRecord::Base has_many :permissions, :dependent => :destroy has_many :roles, :through => :permissions end class Permission < ActiveRecord::...

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

Text Editor for Ruby-on-Rails

guys which text editor is good for Rubyonrails? i m using Windows and i was using E-Texteditor but its not free n its expired now can anyone plese tell me any free texteditor? n which one is best an ...

How to get SQL queries for each user where env is production

I’m developing an application dedicated to generate statistical reports, I would like that user after saving their stat report they save sql queries too. To do that I wrote the following module: ...

热门标签