2

我正在尝试使用acts_as_commentable GEM 向我的帖子模型添加评论。我使用 ABC 作为命名空间,所以我的所有控制器和模型都命名为 ABC::Post、ABC::User 等。

目前我的路由设置如下。

namespace :abc do
  resources :post do 
    resources :comments
  end
end

生成的路由 URL 是

POST   /abc/post/:id/comments(.:format)          abc/comments#create

我怎样才能做到

POST   /abc/post/:id/comments(.:format)         /comments#create
4

1 回答 1

2

建立了答案

namespace :abc do
    resources :post do 
        resources :comments, controller: '/comments'
  end
end
于 2014-11-14T08:55:08.007 回答