0

我有一个保存数据的表单,但它被路由到错误的 URL。

如果我的表格在

本地主机:3000/users/1/styles/1

当我提交表单时,我会被重定向到:

本地主机:3000/styles/1

然后我得到一个错误:

找不到没有 ID 的用户

意见/评论/_form.html.erb

<%= form_for [@commentable, @comment] do |f| %>
  <%= f.text_area :content, rows: 3 %>
  <%= f.submit %>
<% end %>

样式控制器.rb

def show
  @user = User.find(params[:user_id])
  @style = @user.styles.find(params[:id])
  @commentable = @style
  @comments = @commentable.comments
  @comment = Comment.new
end

评论控制器.rb

before_filter :get_commentable

def new
  @comment = @commentable.comments.new
end

def create
  @comment = @commentable.comments.new(params[:comment])
  @comment.user = current_user
  if @comment.save
    redirect_to @commentable, notice: "Comment created."
  else
    render :new
  end
end

private
def get_commentable
  @commentable = params[:commentable].classify.constantize.find(commentable_id)
end

def commentable_id
  params[(params[:commentable].singularize + "_id").to_sym]
end

路线.rb

resources :styles do
  resources :comments, :defaults => { :commentable => 'style' }
end

如果需要其他信息,请告诉我。为什么我会被重新路由到不同的网址?我的评论确实保存到我的数据库中。

谢谢

4

1 回答 1

1

如果您想localhost:3000/users/1/styles/1在创建评论后返回,您应该更改

  if @comment.save
    redirect_to @commentable, notice: "Comment created."
  else

  if @comment.save
    redirect_to [User.find(params[:user_id]), @commentable], notice: "Comment created."
  else

编辑:应该使用拥有样式的用户而不是当前用户

于 2013-09-16T02:50:46.647 回答