请求入参 unable to decode value
2018-10-23 本文已影响0人
小银
get请求里带%符合 会自动解析转Url编码,由于无法解析%就会报这个问题
正常url应该通过encodeURIComponent()转url编码 encodeURIComponent("%")=%25 这样浏览器识别就会解析会%
url编码本身是为了解决特殊字符带来的混淆,比如 = &
get请求里带%符合 会自动解析转Url编码,由于无法解析%就会报这个问题
正常url应该通过encodeURIComponent()转url编码 encodeURIComponent("%")=%25 这样浏览器识别就会解析会%
url编码本身是为了解决特殊字符带来的混淆,比如 = &