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

请求。request_uri只返回相对URL。


当前回答

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

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

其他回答

弃用警告:不支持使用#request_uri。请改用fullpath。

request.env["REQUEST_URI"]

工作在rails 2.3.4测试,不知道其他版本。

您可以在ApplicationController中添加这个current_url方法来返回当前URL,并允许合并其他参数

# https://x.com/y/1?page=1 
# + current_url( :page => 3 )
# = https://x.com/y/1?page=3
def current_url(overwrite={})
    url_for :only_path => false, :params => params.merge(overwrite)
end

使用示例:

current_url --> http://...
current_url(:page=>4) --> http://...&page=4

遗憾的是,这篇文章中的建议没有一个对我有帮助,除了有人说他使用调试器来找到他要找的东西。

我已经创建了一些自定义错误页面,而不是标准的404和500,但请求。Url以/404结束,而不是预期的/non- existent -mumbo-jumbo。

我需要用的是

request.original_url

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

root_url(:only_path => false)