gpt4 book ai didi

ruby-on-rails - rails 3 : Different namespace inside nested resource?

转载 作者:行者123 更新时间:2023-12-04 17:00:49 27 4
gpt4 key购买 nike

有没有办法在嵌套资源中使用(不同的)命名空间?例如,
我有:

resources :users do
resources :tags
end

我想将标签 Controller 放在 Controller /公共(public)内,而将用户 Controller 放在 Controller /用户内,与模板等效。

如果我试试这个:
namespace :user do
resources :users do
namespace :common do
resources :tags
end
end
end

我会得到多余的路线名称:

user_common_tags 等,但我想要类似 的东西common_tags

最佳答案

这样你就会有 common_tags 和 users_tags,它们都链接到同一个 Controller 。

resources :users do
resources :tags
end

namespace :common do
resources :tags
end

关于ruby-on-rails - rails 3 : Different namespace inside nested resource?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6896339/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com