gpt4 book ai didi

ruby-on-rails - 嵌套资源并限制创建的路由 :only and :except

转载 作者:行者123 更新时间:2023-12-04 01:47:18 27 4
gpt4 key购买 nike

大家好,

有人可以帮助我使用嵌套资源及其最佳实践。

我想限制我的:events仅路线 :show:index ,这是正确的做法吗?

resources :events do
resources :registrations, :except => [:index]
end

resources :events, :only => [:index, :show]

这是最好的方式还是更多的 Rubyist 处理这种事情的方式?我添加了两行 resources :events或者有没有办法将它全部组合在 1 个块中?

提前致谢。

最佳答案

是的。您可以将它组合在一个块中,例如:

resources :events, only: [:index, :show] do
resources :registrations, except: :index
end

关于ruby-on-rails - 嵌套资源并限制创建的路由 :only and :except,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13191798/

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