Ajax乱码


背景:项目统一编码GBK


前台js传给服务端,服务端接收到的是乱码:

前台js:

keywords: encodeURI(keywords)
服务端接收:

keywords = java.net.URLDecoder.decode(keywords.trim(), "UTF-8");



服务端返回结果,前台接收乱码:

response.setCharacterEncoding("GBK");
...
response.getWriter().print(jsonStr);


你可能感兴趣的:(Ajax)