encodeURI , encodeURIComponent , decodeURL , decodeURIComponent 转码与解码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了encodeURI , encodeURIComponent , decodeURL , decodeURIComponent 转码与解码相关的知识,希望对你有一定的参考价值。
参考技术A一、这四个方法的用处
1、用来编码和解码URI的
统一资源标识符,或叫做 URI,是用来标识互联网上的资源(例如,网页或文件)和怎样访问这些资源的传输协议(例如,HTTP 或 FTP)的字符串。除了encodeURI、encodeURIComponent、decodeURI、decodeURIComponent四个用来编码和解码 URI 的函数之外 ECMAScript 语言自身不提供任何使用 URL 的支持。
2、URI组成形式
一个 URI 是由组件分隔符分割的组件序列组成。其一般形式是:
Scheme : First / Second ; Third ? Fourth
其中斜体的名字代表组件;“:”, “/”, “;”,“?”是当作分隔符的 保留字符 。
3、有和不同?
encodeURI 和 decodeURI 函数操作的是完整的 URI;这俩函数假定 URI 中的任何保留字符都有特殊意义,所有不会编码它们。
encodeURIComponent 和 decodeURIComponent 函数操作的是组成 URI 的个别组件;这俩函数假定任何保留字符都代表普通文本,所以必须编码它们,所以它们(保留字符)出现在一个完整 URI 的组件里面时不会被解释成保留字符了。
escape,encodeURI,encodeURIComponent有什么区别?
文章目录
一、参考
二、函数介绍
2.1 escape(string)
- 概念
escape是对字符串(string)进行编码,这样就可以在所有的计算机上读取该字符串
。 - 返回值
已编码的 string 的副本。其中某些字符被替换成了十六进制的转义序列。 - 说明
- 该方法不会对 ASCII 字母和数字进行编码,
- 也不会对下面这些 ASCII 标点符号进行编码: - _ . ! ~ * ’ ( ) 。
- 其他所有的字符都会被转义序列替换。 (ASCII码的部分值也会被替换)
- 逆函数
unescape
const v1 = escape('http://www.w3school.com.cn/')
console.log(v1) // http%3A//www.w3school.com.cn/
const v2 = escape('http://www.w3school.com.cn/My first/')
console.log(v2) // http%3A//www.w3school.com.cn/My%20first/
const v3 = escape(',/?:@&=+$#')
console.log(v3) // %2C/%3F%3A@%26%3D+%24%23
console.log(unescape('%2C/%3F%3A@%26%3D+%24%23')) // ,/?:@&=+$#
2.2 encodeURI(URIstring)
-
定义和用法
encodeURI() 函数可把字符串作为 URI 进行编码。 -
返回值
URIstring 的副本,其中的某些字符将被十六进制的转义序列进行替换。 -
说明
- 该方法的目的是对 URI 进行完整的编码,因此对以下在 URI 中具有特殊含义的 ASCII 标点符号,encodeURI() 函数是不会进行转义的:
; / ? : @ & = + $ , #
- 该方法不会对 ASCII 字母和数字进行编码,也不会对这些 ASCII 标点符号进行编码:
- _ . ! ~ * ' ( )
。
- 该方法的目的是对 URI 进行完整的编码,因此对以下在 URI 中具有特殊含义的 ASCII 标点符号,encodeURI() 函数是不会进行转义的:
-
逆函数
decodeURI
const v1 = encodeURI('http://www.w3school.com.cn/')
console.log(v1) // http://www.w3school.com.cn/
const v2 = encodeURI('http://www.w3school.com.cn/My first/')
console.log(v2) // http://www.w3school.com.cn/My%20first/
const v3 = encodeURI(',/?:@&=+$#')
console.log(v3) // ,/?:@&=+$#
2.3 encodeURIComponent(URIstring)
-
定义和用法
encodeURIComponent() 函数可把字符串作为 URI 组件进行编码。 -
返回值
URIstring 的副本,其中的某些字符将被十六进制的转义序列进行替换。 -
说明
- 该方法不会对 ASCII 字母和数字进行编码,
- 也不会对这些 ASCII 标点符号进行编码:
- _ . ! ~ * ' ( )
。 - 其他字符(比如 :
;/?:@&=+$,#
这些用于分隔 URI 组件的标点符号),都是由一个或多个十六进制的转义序列替换的。
-
逆函数
decodeURIComponent
const v1 = encodeURIComponent('http://www.w3school.com.cn/')
console.log(v1) // http%3A%2F%2Fwww.w3school.com.cn%2F
const v2 = encodeURIComponent('http://www.w3school.com.cn/My first/')
console.log(v2) // http%3A%2F%2Fwww.w3school.com.cn%2FMy%20first%2F
const v3 = encodeURIComponent(',/?:@&=+$#')
console.log(v3) // %2C%2F%3F%3A%40%26%3D%2B%24%23
三、encodeURIComponent() 函数 与 encodeURI() 函数的区别?
前者假定它的参数是 URI 的一部分(比如协议、主机名、路径或查询字符串)
encodeURIComponent() 函数将转义用于分隔 URI 各个部分的标点符号。
个人理解:encodeURIComponent() 将URL字符串转为URL地址能识别从参数而不影响参数的传递
,例如(/ : ? & = 等都是标准的URL传递参数的字符串,因此要全部转义),encode() 不影响URL 的整体结构,但是参数的非asscii码的值需要更改
var set1 = ";,/?:@&=+$"; // 保留字符
var set2 = "-_.!~*'()"; // 不转义字符
var set3 = "#"; // 数字标志
var set4 = "ABC abc 123"; // 字母数字字符和空格
console.log(encodeURI(set1)); // ;,/?:@&=+$
console.log(encodeURI(set2)); // -_.!~*'()
console.log(encodeURI(set3)); // #
console.log(encodeURI(set4)); // ABC%20abc%20123 (空格被编码为 %20)
console.log(encodeURIComponent(set1)); // %3B%2C%2F%3F%3A%40%26%3D%2B%24
console.log(encodeURIComponent(set2)); // -_.!~*'()
console.log(encodeURIComponent(set3)); // %23
console.log(encodeURIComponent(set4)); // ABC%20abc%20123 (the space gets encoded as %20)
四、使用场景
-
如果只是编码字符串,不和URL有半毛钱关系,那么用escape。
-
如果你需要编码整个URL,然后需要使用这个URL
用encodeURI
encodeURI("http://www.cnblogs.com/season-huang/some other thing");
// "http://www.cnblogs.com/season-huang/some%20other%20thing";
编码后会变为,空格被编码成了%20
用了encodeURIComponent
encodeURI("http://www.cnblogs.com/season-huang/some other thing");
// "http%3A%2F%2Fwww.cnblogs.com%2Fseason-huang%2Fsome%20other%20thing"
连 “/” 都被编码了,整个URL已经没法用了。
3、当你需要编码URL中的参数的时候,那么encodeURIComponent是最好方法。
var param = 'http://www.cnblogs.com/season-huang/' // param为参数
param = encodeURIComponent(param) // http%3A%2F%2Fwww.cnblogs.com%2Fseason-huang%2F
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肯定要出问题,因为后面的/是需要编码的。
以上是关于encodeURI , encodeURIComponent , decodeURL , decodeURIComponent 转码与解码的主要内容,如果未能解决你的问题,请参考以下文章
encodeURI和encodeURIComponent区别