解决js中传值,Action获取是乱码问题详解编程语言

1、先在js中进行编码

var str = $("mytext").val(); 
//转码,两次  
str = encodeURI(str); 
str = encodeURI(str); 
window.location = 'admin/reportQueryExcel.do?ruleText='+str;

2、action中进行解码

URLDecoder.decode(request.getParameter("ruleText"),"utf-8");

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/14258.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论