2

act_as_commentable GEMを使用して、Post Model にコメントを追加しようとしています。名前空間として 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 に答える