ruby-on-rails – Rails – 将hash添加到redirect_to
发布时间:2020-12-16 20:06:29 所属栏目:百科 来源:网络整理
导读:我需要指定一个哈希来添加到redirect_to.我该如何做? 这是我的redirect_to形成的方式: redirect_to :action = 'show',:id = @consultant.id 我需要去example.com/consultant/#some_hash 谢谢! 解决方法 尝试redirect_to your_current_options,:anchor =
我需要指定一个哈希来添加到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 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |