jQuery ajax 提交的时候
http://localhost:8089/v1/app_ref/list?enabled=0&srcName=%25E4%25B8%2587
解决方案:
js中
var srcName=encodeURI(encodeURI($("#srcName").val()));
后台接受处理
try { srcName = java.net.URLDecoder.decode(srcName, "UTF-8");} catch (UnsupportedEncodingException e) { logger.error("转码失败{}", e);}
然后就OK了