如何在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
其他回答
如果您所说的相对是指没有域,那么请查看request.domain。
你可以在rails 3.2中使用任何一个:
request.original_url
or
request.env["HTTP_REFERER"]
or
request.env['REQUEST_URI']
我认为它在任何地方都适用
"#{request.protocol}#{request.host}:#{request.port}#{request.fullpath}"
(url_for(:only_path => false) == "/" )? root_url : url_for(:only_path => false)
您可以在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
Rails 4.0
你可以使用request。Original_url,输出将如下示例所示
get "/articles?page=2"
request.original_url # => "http://www.example.com/articles?page=2"