继承资源:具有嵌套资源的路由

发布于 2024-11-06 09:56:49 字数 195 浏览 3 评论 0原文

在我的routes.rb中,我有:

resources :fire_preventions do
   get 'search_adv', :on => :collection
end

如何将它与继承的资源路由一起使用?

search_adv_collection_url 不起作用。

In my routes.rb I have:

resources :fire_preventions do
   get 'search_adv', :on => :collection
end

How can I use it with inherited resources routes?

search_adv_collection_url doesn't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

离线来电— 2024-11-13 09:56:49

您可以在命令行中执行rake paths。它将根据routes.rb打印所有可用路径

You can execute rake routes in comand line. It will print all available paths according to routes.rb

生活了然无味 2024-11-13 09:56:49

由于只列出了一条路线,

resources :fire_preventions do 
  get 'search_adv', :on => :collection 
end

因此是简化形式,用于消除额外的块。

resources :fire_preventions do 
  collection do
    get 'search_adv'
  end
end

您应该能够使用 search_adv_fire_preventions_pathsearch_adv_fire_preventions_url。最好执行rake paths来检查这一点。

As there is only one route listed,

resources :fire_preventions do 
  get 'search_adv', :on => :collection 
end

is shorten form for getting rid of the additional block

resources :fire_preventions do 
  collection do
    get 'search_adv'
  end
end

You should be able to use search_adv_fire_preventions_path and search_adv_fire_preventions_url. It's best that you perform rake routes to check this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文