How can I get the current absolute URL in my Ruby on Rails view?
The request.request_uri only returns the relative URL.
|
How can I get the current absolute URL in my Ruby on Rails view? The |
||||
|
|
|
For Rails 2: You want For Rails 3: You want |
|||||||||||||||||||||
|
|
I think that the Ruby on Rails 3.0 method is now |
||||
|
|
|
You could use |
|||||||||||||
|
|
DEPRECATION WARNING: Using #request_uri is deprecated. Use fullpath instead. |
|||||||
|
|
You can add this current_url method in the ApplicationController to return the current URL and allow merging in other parameters
|
|||||||||||||||
|
|
In Ruby on Rails 3.1.0.rc4:
|
|||||
|
|
For Ruby on Rails 3:
I fired up a debugger session and queried the request object:
|
||||
|
|
And you can easily add some new parameter:
|
|||||
|
|
I needed the application URL but with the subdirectory. I used:
|
||||
|
|
|
I think request.domain would work, but what if you're in a sub directory like blah.blah.com? Something like this could work:
Change the parameters based on your path structure. Hope that helps! |
|||||
|
|
It looks like
|
||||
|
|
|
This works for Ruby on Rails 3.0 and should be supported by most versions of Ruby on Rails:
|
||||
|
|
|
None of the suggestions here in the thread helped me sadly, except the one where someone said he used the debugger to find what he looked for. I've created some custom error pages instead of the standard 404 and 500, but What I needed to use was
|
||||
|
|
|
If by relative, you mean just without the domain, then look into |
||||
|
|
|
Using Ruby 1.9.3-p194 and Ruby on Rails 3.2.6: If request.fullpath doesn't work for you, try request.env["HTTP_REFERER"] Here's my story below. I got similar problem with detecting current URL (which is shown in address bar for user in her browser) for cumulative pages which combines information from different controllers, for example, The user can switch to different lists of types of issues. All those lists are loaded via Ajax from different controllers/partials (without reloading). The problem was to set the correct path for the back button in each item of the list so the back button could work correctly both in its own page and in the cumulative page history. In case I use request.fullpath, it returns the path of last JavaScript request which is definitely not the URL I'm looking for. So I used request.env["HTTP_REFERER"] which stores the URL of the last reloaded request. Here's an excerpt from the partial to make a decision
|
|||||
|
|
In Rails 3 you can use
http://apidock.com/rails/v3.2.8/ActionDispatch/Request/original_url |
|||
|
|
|
if you want to be specific, meaning, you know the path you need:
|
|||
|
|
|
To get the absolute URL which means that the
The users_url helper generates a URL that includes the protocol and host name. The users_path helper generates only the path portion.
|
|||
|
|