zoukankan      html  css  js  c++  java
  • GET请求中对于参数中特殊字符的处理

    get请求响应为 400,问题在于:{}、\%&,因为有特殊符号所以报错了。

    解决方法:

    1、在 拼接 请求URL 之前 可以先将 path参数 的参数值通过 encodeURIComponent 处理一下。例如:

    var params = { token:xxx };
    for(item in params){
        params[item] = encodeURIComponent(params[item]);
    }

    2、或用 RegExp 去替代

    var reg = new RegExp(/\%/,"g");
    var reg1 = new RegExp(/&/,"g");
    var params = { token:xxx };
    for(item in params){
        params[item] = String(params[item]).repalce(reg,"%25").replace(reg1,"%25");
    }

    特殊字符分类

    1. 用于分隔 URI 组件的标点符号:;/?:@&=+$,#
    2. 其他ASCII 标点符号进行编码: - \_ . ! ~ * ' ( )

    encodeURIencodeURIComponent的区别:

    encodeURIComponent:传递参数时需要使用encodeURIComponent,这样组合的url才不会被#等特殊字符截断。另外,encodeURIComponent只会对用于分隔 URI 组件的标点符号进行处理。不会对其他标点符号进行编码。

    encodeURI:进行url跳转时可以整体使用encodeURI。
    encodeURI():不会对用于分隔 URI 组件的标点符号进行编码,例如冒号、正斜杠、问号和井字号;
    encodeURI():在实践中更常见的是对查询字符串参数而不是对基础URL进行编码.

    兼容性比较强的替代版本:

    for(var item in params){
        var nowData = params[item];
        try{ 
           params[item] = encodeURIComponent(decodeURIComponent(nowData)) 
        }catch(err){
            var reg = new RegExp(/\%/,"g");
            params[item] = encodeURIComponent(decodeURIComponent(nowData.replace(reg,"%25")))
        }
    }
    • 浏览器在对%执行decodeURIComponent时报错
  • 相关阅读:
    学习笔记-Python基础4-九九乘法表练习
    学习笔记-Python基础4-函数
    学习笔记-Python基础3-程序结构:顺序、分支、循环
    JS根据获取的navigator.userAgent,判断用户打开页面的终端
    代理模式,CGLIB 与Spring AOP实现原理
    ueditor不过滤保存html
    ecstore 新增input控件方法
    ecstore前台模板保留css样式
    ecstore 当前网址
    mysql 导入数据过大报错
  • 原文地址:https://www.cnblogs.com/ljygirl/p/14736189.html
Copyright © 2011-2022 走看看