0

我有用户模型和评论模型使用acts_as_commentable_with_threading
我试图将评论功能放在每个用户的显示页面上。
但是当我尝试提交表单时,它显示路由错误。
为什么是这样?

错误

Routing Error
No route matches [POST] "/user/john/add_comment"

模型/用户.rb

acts_as_commentable

意见/用户/show.html.erb

<%= render 'comment', :user => @user %>

意见/用户/_comment.html.erb

<table>
  <tr>
    <th>ID</th>
    <th>Title</th>
    <th>Body</th>
    <th>Subject</th>
    <th>Posted by</th>
    <th>Delete</th>
  </tr>

<% @user.comment_threads.each do |comment| %>
  <tr>
    <td><%= comment.id %></td>
    <td><%= comment.title %></td>
    <td><%= comment.body %></td>
    <td><%= comment.subject %></td>
    <td><%= comment.user.user_profile.nickname if comment.user.user_profile %></td>
    <td><%= button_to 'destroy', comment, confirm: 'Are you sure?', :disable_with => 'deleting...', method: :delete %></td>
    </tr>
<% end %>
</table>


<%= form_for @user, :html => { :class => 'form-horizontal' } do |f| %>

    <div class="field">
      <%= f.label :body %><br />
      <%= f.text_field :body %>
    </div> 

  <div class="actions">
    <%= f.submit %>
  </div>

<% end %>

路线.rb

get "user/:id/add_comment" => 'users#add_comment', :as => :add_comment_user
get "user/:id/delete_comment" => 'users#delete_comment', :as => :delete_comment_user

users_controller.rb

def add_comment
    @user = User.find_by_username(params[:id])
    @user_who_commented = current_user
    @comment = Comment.build_from( @user, @user_who_commented.id, params[:users][:body] )
    @comment.save
    redirect_to :controller => 'users', :action => 'show', :id => params[:users][:id]
    flash[:notice] = "comment added!"
end
4

2 回答 2

1

因为您的路线是 GET,而表单是 POST。

于 2012-12-25T13:33:39.217 回答
0

它需要是一个帖子路线。此外,您要发布到 user/:name/add_comment,您应该发布用户 ID。您可以使用该名称,但这需要在所有用户中都是唯一的。

这条线也是错误的。

@user = User.find_by_username(params[:id])

您可以params[:username]通过find_by_id

于 2012-12-25T13:53:11.243 回答