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

请求。request_uri只返回相对URL。


当前回答

你可以设置一个变量URI.parse(current_url),我还没有看到这个建议在这里,它为我工作。

其他回答

如果你想要更具体,也就是说,你知道你需要的路径:

link_to current_path(@resource, :only_path => false), current_path(@resource)

如果您所说的相对是指没有域,那么请查看request.domain。

我认为Ruby on Rails 3.0的方法现在是request.fullpath。

(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}"