JavaScript 编码和解码方法
方法 | 说明 |
---|---|
escape() | 使用转义序列替换某些字符来对字符串进行编码 |
unescape() | 对使用 escape() 编码的字符串进行解码 |
encodeURI() | 通过转义某些字符对 URI 进行编码 |
decodeURI() | 对使用 encodeURI() 方法编码的字符串进行解码 |
encodeURIComponent() | 通过某些转义字符对 URI 的组件进行编码 |
deencodeURIComponent() | 对使用 encodeURIComponent() 方法编码的字符串进行解码 |
使用
我主要是用到上面两个escape
、unescape
,对emoji进行转码
因为遇到一个问题就是要把emoji表情存储,但是我担心直接存储无法存,所以使用escape
转码后存储,
然后需要用到在用unescape
解码就可以使用了
示例
const z = escape('
标签:编码,unescape,解码,使用,JS,Unicode,escape,字符串
From: https://www.cnblogs.com/tn666/p/16948915.html