Jquery - Ajax Call的中文乱码问题
程序员文章站
2022-07-12 12:19:05
...
在Java中,有时会碰到奇怪的中文乱码问题,无论是在web.xml中设置相关的utf-8/gbk2312 filter,还是在js中或者在java中进行编码的encode和decode都会出现中文乱码问题。如下代码所示:
function loadParentOrg() { var url = "getOrgsByLevel.patrol?level=中文"; alert(url); $.ajax({ url: url, async: true, type: 'post', success: function(organizations){ // alert(organizations); } }) }
如上所示,将中文写在url中,无论是type为post还是type为get,都会出现中文乱码问题。
解决中文乱码的最好方式是使用post的方式(type:'post')并且将发送的数据写在data字段中,如下所示:
function loadParentOrg() { var url = "getOrgsByLevel.patrol"; alert(url); $.ajax({ url: url, async: true, type: 'post', data: { level:$("#level").val() }, success: function(organizations){ // alert(organizations); } }) }
推荐阅读
-
ubuntu系统下matplotlib中文乱码问题的解决方法
-
JQuery异步获取返回值中文乱码的解决方法
-
关于Cookie中带有中文乱码报错的问题解决
-
Three.js使用THREE.TextGeometry创建三维文本中文乱码的问题如何解决?
-
基于Jquery.history解决ajax的前进后退问题
-
jquery1.8版本使用ajax实现微信调用出现的问题分析及解决办法
-
解决asp.net core在输出中文时乱码的问题
-
解决3.01版的jquery.form.js中文乱码问题的解决方法
-
解决python3 HTMLTestRunner测试报告中文乱码的问题
-
通过过滤器(Filter)解决JSP的Post和Request中文乱码问题