ruby-on-rails – 添加自定义路由到Rails应用程序

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 添加自定义路由到Rails应用程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经读过 the Rails Guides了.

我想要设置的是以下路由到路由到’profiles’控制器:

GET个人资料/慈善机构 – 应显示所有慈善机构
GET个人资料/图表/:id应该显示一个特定的慈善机构
GET个人资料/捐赠者 – 应显示所有捐赠者
GET个人资料/捐赠者/:id – 应该显示一个特定的捐赠者

我创建了配置文件控制器和两种方法:慈善机构和捐赠者.

这就是我需要的吗?

解决方法

以下将根据您的需要设置路由,但会将它们映射到:index和:show of CharitiesController和DonorsController:
namespace :profiles do
  # Actions: charities#index and charities#show
  resources :charities,:only => [:index,:show]

  # Actions: donors#index and donors#show
  resources :donors,:show]
end

当设置自定义路由更合适时,这样的事情会:

get 'profiles/charities',:to => 'profiles#charities_index'
get 'profiles/charities/:id',:to => 'profiles#charities_show'
get 'profiles/donors',:to => 'profiles#donor_index'
get 'profiles/donors/:id',:to => 'profiles#donor_show'

以下是您所经历的指南中的相关部分:

> Resource Routing: the Rails Default – Controller Namespaces and Routing
> Non-Resourceful Routes – Naming Routes

原文链接:https://www.f2er.com/ruby/267727.html

猜你在找的Ruby相关文章