How do you safely encode a URL using JavaScript such that it can be put into a GET string?
var myUrl = "http://example.com/index.html?param=1&anotherParam=2";
var myOtherUrl = "http://example.com/index.html?url=" + myUrl;
I assume that you need to encode the myUrl
variable on that second line?
To prevent double encoding it's a good idea to decode the url before encoding (if you are dealing with user entered urls for example, which might be already encoded).
Lets say we have
abc%20xyz 123
as input (one space is already encoded):What is URL encoding:
A URL should be encoded when there are special characters located inside the URL. For example:
We can observe in this example that all characters except the string
notEncoded
are encoded with % signs. URL encoding is also known as percentage encoding because it escapes all special characters with a %. Then after this % sign every special character has a unique codeWhy do we need URL encoding:
Certain characters have a special value in a URL string. For example, the ? character denotes the beginning of a query string. In order to succesfully locate a resource on the web, it is necesarry to distinguish between when a character is meant as a part of string or part of the url structure.
How can we achieve URL encoding in JS:
JS offers a bunch of build in utility function which we can use to easily encode URL's. These are two convenient options:
encodeURIComponent()
: Takes a component of a URI as an argument and returns the encoded URI string.encodeURI()
: Takes a URI as an argument and returns the encoded URI string.Example and caveats:
Be aware of not passing in the whole URL (including scheme, e.g https://) into
encodeURIComponent()
. This can actually transform it into a not functional URL. For example:We can observe f we put the whole URL in
encodeURIComponent
that the foward slashes (/) are also converted to special characters. This will cause the URL to not function properly anymore.Therefore (as the name implies) use:
encodeURIComponent
on a certain part of a URL which you want to encode.encodeURI
on a whole URL which you want to encode.encodeURIComponent() is the way to go.
BUT you should keep in mind that there are small differences from php version
urlencode()
and as @CMS mentioned, it will not encode every char. Guys at http://phpjs.org/functions/urlencode/ made js equivalent tophpencode()
:Encode URL String
To encode a URL, as has been said before, you have two functions:
and
The reason both exist is that the first preserves the URL with the risk of leaving too many things unescaped, while the second encodes everything needed.
With the first, you could copy the newly escaped URL into address bar (for example) and it would work. However your unescaped '&'s would interfere with field delimiters, the '='s would interfere with field names and values, and the '+'s would look like spaces. But for simple data when you want to preserve the URL nature of what you are escaping, this works.
The second is everything you need to do to make sure nothing in your string interfers with a URL. It leaves various unimportant characters unescaped so that the URL remains as human readable as possible without interference. A URL encoded this way will no longer work as a URL without unescaping it.
So if you can take the time, you always want to use encodeURIComponent() -- before adding on name/value pairs encode both the name and the value using this function before adding it to the query string.
I'm having a tough time coming up with reasons to use the encodeURI() -- I'll leave that to the smarter people.
You have three options:
escape()
will not encode:@*/+
encodeURI()
will not encode:~!@#$&*()=:/,;?+'
encodeURIComponent()
will not encode:~!*()'
But in your case, if you want to pass a URL into a
GET
parameter of other page, you should useescape
orencodeURIComponent
, but notencodeURI
.See Stack Overflow question Best practice: escape, or encodeURI / encodeURIComponent for further discussion.