如何在Ruby on Rails视图中获得当前的绝对URL ?
请求。request_uri只返回相对URL。
如何在Ruby on Rails视图中获得当前的绝对URL ?
请求。request_uri只返回相对URL。
当前回答
看起来在Ruby on Rails 3中request_uri已弃用。
Using #request_uri is deprecated. Use fullpath instead.
其他回答
要获得绝对URL,这意味着从根目录中获取,它可以像这样显示
<%= link_to 'Edit', edit_user_url(user) %>
users_url助手生成一个包含协议和主机的URL 的名字。users_path助手只生成路径部分。
users_url: http://localhost/users
users_path: /users
对于rails 3:
request.fullpath
获取不带任何查询参数的请求URL。
def current_url_without_parameters
request.base_url + request.path
end
(url_for(:only_path => false) == "/" )? root_url : url_for(:only_path => false)
Rails 4.0
你可以使用request。Original_url,输出将如下示例所示
get "/articles?page=2"
request.original_url # => "http://www.example.com/articles?page=2"