encodeURI 和 encodeURIComponent

发布时间:2024年01月23日

encodeURI 和 encodeURIComponent 是用来处理加密
decodeURI 和 decodeURIComponent 是用来处理解密
encodeURI 和encodeURIComponent 区别:
唯一区别就是编码的字符范围
encodeURI方法不会对下列字符编码 ASCII字母 数字 ~!@#$&()=:/,;?+’
encodeURIComponent方法不会对下列字符编码 ASCII字母 数字 ~!
()’
所以encodeURIComponent比encodeURI编码的范围更大
将对具有特殊含义的所有内容进行编码,你可以只编码他们的后面参数:

const world = 'A string with symbols & characters that have special meaning?'
const uri = 'http://example.com/foo?hello=' + encodeURIComponent(world)

在这里插入图片描述
解密的运用场景:下载后台的文件xlsx,返回的了文件的名称,需要解码,并使用文件命名
这里用了umi的request请求,要求返回请求头(配置 getResponse: true即可)
在这里插入图片描述

文章来源:https://blog.csdn.net/tangxiaobao2016/article/details/135764598
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。