如何在Ruby on Rails视图中获得当前的绝对URL ?
请求。request_uri只返回相对URL。
如何在Ruby on Rails视图中获得当前的绝对URL ?
请求。request_uri只返回相对URL。
当前回答
您可以在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
其他回答
你可以设置一个变量URI.parse(current_url),我还没有看到这个建议在这里,它为我工作。
你可以用
request.original_url
或
"#{request.protocol}#{request.host_with_port}"
获取当前URL。
你可以使用:
request.full_path
or
request.url
希望它能解决你的问题。
干杯
看起来在Ruby on Rails 3中request_uri已弃用。
Using #request_uri is deprecated. Use fullpath instead.
我需要应用程序URL,但带有子目录。我使用:
root_url(:only_path => false)