如何在Ruby on Rails视图中获得当前的绝对URL ?

请求。request_uri只返回相对URL。


当前回答

我需要应用程序URL,但带有子目录。我使用:

root_url(:only_path => false)

其他回答

你可以使用url_for(only_path: false)

(url_for(:only_path => false) == "/" )? root_url : url_for(:only_path => false)

你可以在rails 3.2中使用任何一个:

request.original_url
or
request.env["HTTP_REFERER"]
or
request.env['REQUEST_URI']

我认为它在任何地方都适用

"#{request.protocol}#{request.host}:#{request.port}#{request.fullpath}"

对于rails 3:

request.fullpath

适用于Rails 3.2或Rails 4+

你应该使用request。original_url获取当前URL。在这里找到了当前回购的源代码。

这个方法被记录在original_url方法中,但如果你好奇,它的实现是:

def original_url
  base_url + original_fullpath
end

对于Rails 3:

你可以写“#{request.protocol}#{request.host_with_port}#{request. protocol”。Fullpath}",因为请求。Url现在已弃用。


对于Rails 2:

你可以写请求。Url而不是request.request_uri。这结合了协议(通常是主机的http://)和提供完整地址的request_uri)。