Ruby on Rails - request.env['HTTP_REFERER'] returns nil

拟墨画扇 提交于 2019-11-28 11:24:19

HTTP_REFERER is an HTTP header set by the browser in the request containing the the address of the previous web page from which a link to the currently requested page was followed. It will not be set when directly navigating to a page.

REQUEST_URI (also available via request.request_uri())is the Uniform Resource Identifier used to access the Rails controller/action and should always be set.

Throw this debugging code into your view:

<ul>
<% request.env.each do |item| %>
    <li><%= item[0] %> : <%= item[1] %></li>
<% end %>
</ul>

If HTTP_REFERER is not set, make sure you are navigating to that page via a link or redirect and see if it is set then.

There is also a chance your browser is not setting the HTTP_REFERER header. Be sure you do not have an add-on affecting this. You can use a nifty Firefox add-on called Tamper Data to see the headers being sent.

No matter what solution you come up with, you need to be able to handle the empty referer case, because the client has the choice whether or not to specify it. (It's off when you're in Safari's private browsing and Chrome's incognito mode for example)

In Rails you can use redirect_to :back, which will use the HTTP_REFERER if it is set, or raise an error otherwise.

When using redirect_to :back, if there is no referrer, RedirectBackError will be raised. You may specify some fallback behavior for this case by rescuing RedirectBackError.

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