encodeURI 区别于 encodeURIComponent
对URL编码是常见的事,所以这两个方法应该是实际中要特别注意的。
它们都是编码URL,唯一区别就是编码的字符范围,其中
encodeURI
方法不会对下列字符编码:ASCII字母
、数字
、~!@#$&*()=:/,;?+'
encodeURIComponent
方法不会对下列字符编码:ASCII字母
、数字
、~!*()'
所以encodeURIComponent
比encodeURI
编码的范围更大。
实际例子来说,encodeURIComponent
会把http://
编码成http%3A%2F%2F
而encodeURI
却不会。
##二者应用场景
如果你需要编码整个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是最好方法。
1 | var param = "http://www.cnblogs.com/season-huang/"; //param为参数 |
看到了把,参数中的 “/“ 可以编码,如果用encodeURI肯定要出问题,因为后面的/是需要编码的。
我很可爱,请给我钱
- 本文链接:https://cong1223.github.io/2019/04/27/%E6%B5%85%E8%B0%88encodeURI%E5%92%8CencodeURIComponent/
- 版权声明:本博客所有文章除特别声明外,均默认采用 许可协议。
若没有本文 Issue,您可以使用 Comment 模版新建。
GitHub IssuesGitHub Discussions