发送get请求时,url中解析出现乱码的解决,无法跳转,url中出现转义
2021-01-28 23:17
标签:component encodeuri 解析 var pre 无法跳转 www 转换 java 使用encodeURI()和encodeURIComponent()函数将字符串转换为通用资源标识符 发送get请求时,url中解析出现乱码的解决,无法跳转,url中出现转义 标签:component encodeuri 解析 var pre 无法跳转 www 转换 java 原文地址:https://www.cnblogs.com/intelwisd/p/13206610.html
前提是字符串:var uri="http://www.jxbh.cn/illegal value.htm#start";
console.log(encodeURI(uri));
// http://www.jxbh.cn/illegal%20value.htm#start
var uri="http://www.jxbh.cn/illegal value.htm#start";
console.log(encodeURIComponent(uri));
// http%3A%2F%2Fwww.jxbh.cn%2Fillegal%20value.htm%23start
上一篇:js精确到指定位数的小数
下一篇:windows命令行窗口的命令
文章标题:发送get请求时,url中解析出现乱码的解决,无法跳转,url中出现转义
文章链接:http://soscw.com/index.php/essay/48450.html