How to generate links with trailing slash in Rails 3?

谁说胖子不能爱 提交于 2019-11-28 06:59:14

You can add this to your application.rb:

config.action_controller.default_url_options = { :trailing_slash => true }

This way all routes will be generated with a trailing slash automatically, with no need to modify each link in your project.

Simply do as follows:

link_to 'Companies', companies_path(:trailing_slash => true)

Documentation here.

I couldn't find any references, but adding trainling_slash: true to the route definition also works (and avoids repeating oneself).

get 'companies/' => 'companies#index', :as => :companies, :trailing_slash => true

This was tested with Rails 3.2.13:

rails c
1.9.3p327 :005 > app.companies_path
=> "http://www.example.com/companies/

For rails 3.2:

Rails.application.routes.default_url_options[:trailing_slash]= true
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!