Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
696 views
in Technique[技术] by (71.8m points)

Rails 3: Different namespace inside nested resource?

Is there a way to use a (different) namespaces inside nested resources? For example, I have:

resources :users do
 resources :tags
end

and I'd like to place the tags controller inside controllers/common, while placing users controller inside controllers/user, with the equivalent for templates.

If I try this:

namespace :user do
 resources :users do
  namespace :common do
   resources :tags
  end 
 end
end

I'll get redundant route names:

user_common_tags, etc. But I want something like common_tags

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This way you will have common_tags, and users_tags, both linking to the same controller.

resources :users do
  resources :tags
end

namespace :common do
  resources :tags
end

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...