vote up 10 vote down star
2

When encoding a query string to be sent to a web server - what is the best practice to use from javascript:

Use escape:

escape("% +&=");

OR

use encodeURI() / encodeURIComponent()

encodeURI("http://www.google.com?var1=value1&var2=value2");

encodeURIComponent("var1=value1&var2=value2");
flag

4 Answers

vote up 8 vote down check

encodeURI() - the escape() function is for javascript escaping, not HTTP.

link|flag
vote up 4 vote down

As Danny Goodman points out in Javascript, The Definitive Guide, escape() was ECMAScript v1 and deprecated in ECMAScript v3. General advice seems to be to avoid using it.

link|flag
vote up 2 vote down

This has been explained quite well at the foll link:

http://xkr.us/articles/javascript/encode-compare/

link|flag
vote up 1 vote down

Also remember that they all encode different sets of characters, and select the one you need appropriately. encodeURI() encodes fewer characters than encodeURIComponent(), which encodes fewer (and also different, to dannyp's point) characters than escape().

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.