ruby-on-rails – Rails – 将hash添加到redirect_to

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails – 将hash添加到redirect_to前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要指定一个哈希来添加到redirect_to.我该如何做?

这是我的redirect_to形成的方式:

redirect_to :action => 'show',:id => @consultant.id

我需要去example.com/consultant/#some_hash

谢谢!

解决方法

尝试redirect_to your_current_options,:anchor => ‘fragment_identifier’

http://api.rubyonrails.org/classes/ActionDispatch/Routing/UrlFor.html#method-i-url_for

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

猜你在找的Ruby相关文章