乐趣区

浅谈encodeURI和encodeURIComponent

encodeURI 区别于 encodeURIComponent

对 URL 编码是常见的事,所以这两个方法应该是实际中要特别注意的。
它们都是编码 URL,唯一区别就是编码的字符范围,其中

  1. encodeURI方法不会对下列字符编码:
    ASCII 字母 数字~!@#$&*()=:/,;?+'
  2. encodeURIComponent方法不会对下列字符编码:
    ASCII 字母 数字~!*()'

所以 encodeURIComponentencodeURI编码的范围更大。
实际例子来说,encodeURIComponent会把 http:// 编码成 http%3A%2F%2FencodeURI 却不会。

二者应用场景

如果你需要编码整个 URL,然后需要使用这个 URL,那么用 encodeURI;

比如:
encodeURI("http://www.cnblogs.com/season-huang/some other thing");
编码后会变为:
"http://www.cnblogs.com/season-huang/some%20other%20thing";
其中,空格被编码成了 %20。但是如果你用了 encodeURIComponent,那么结果变为:
"http%3A%2F%2Fwww.cnblogs.com%2Fseason-huang%2Fsome%20other%20thing"

看到了区别吗,连 “/” 都被编码了,整个 URL 已经没法用了。

当你需要编码 URL 中的参数的时候,那么 encodeURIComponent 是最好方法。

var param = "http://www.cnblogs.com/season-huang/"; //param 为参数
param = encodeURIComponent(param);
var url = "http://www.cnblogs.com?next=" + param;
console.log(url) //"http://www.cnblogs.com?next=http%3A%2F%2Fwww.cnblogs.com%2Fseason-huang%2F"

看到了把,参数中的 “/” 可以编码,如果用 encodeURI 肯定要出问题,因为后面的 / 是需要编码的。

退出移动版