新手问题 Post 与 Comment 关联删除的时候,

zhangyanan · November 15, 2013 · Last by Rei replied at November 15, 2013 · 1943 hits
def destroy
   @post = Post.find(params[:post_id])
   @comment = @post.comments.find(params[:id])
   @comment.destroy
   redirect_to post_path(@post)
 end

这里的,params[:post_id] 是怎么取到的?post 对象不是 id 字段吗?为什么这样可以取到值?

http://guides.ruby.tw/rails3/getting_started.html ,搜索 params[:post_id] 即可找到。

因为它这里用了嵌套路由

resources :posts do
  resources :comments
end

Url 模式是:

/posts/:post_id/comments/:id

你可以用

rake routes

来查看现在的路由规则。

You need to Sign in before reply, if you don't have an account, please Sign up first.