将root重定向到rails 4中的命名路由

将root重定向到rails 4中的命名路由,第1张

概述我正在尝试使用routes.rb将我的www.example-app.com根目录重定向到www.example-app.com/app/dashboard.目前我正是这样做的: root to: redirect('/app/dashboard') 但是想使用命名路由来做,例如: get 'app/dashboard' => 'accounts#dashboard', as: :account_ 我正在尝试使用routes.rb将我的www.example-app.com根目录重定向到www.example-app.com/app/dashboard.目前我正是这样做的:
root to: redirect('/app/dashboard')

但是想使用命名路由来做,例如:

get 'app/dashboard' => 'accounts#dashboard',as: :account_dashboard

但是当我把它放在路线中时:

root to: redirect(account_dashboard_url)

……当然它不起作用,我怎么能这样做?

解决方法 你不能直接在routes.rb中做到这一点(截至目前为止–Rails 4.2),但有一些方法可以使它工作.最简单的IMO是在应用程序控制器中创建一个方法来进行重定向.
# routes.rbroot to: 'application#redirect_to_account_dashboard'

# application_controller.rbdef redirect_to_account_dashboard  redirect_to account_dashboard_urlend
总结

以上是内存溢出为你收集整理的将root重定向到rails 4中的命名路由全部内容,希望文章能够帮你解决将root重定向到rails 4中的命名路由所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1049837.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存