码迷,mamicode.com
首页 > Web开发 > 详细

ajax传值到后台,如果是中文字符串的话,可能会出现乱码的问题

时间:2015-01-20 10:21:57      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

$.ajax({
     type:‘get‘,

url:
‘updateAttendanceContent.action‘,
data:
‘attenRegistContent.registId=‘+id+‘&attenRegistContent.RContent=‘+encodeURI(value,"UTF-8"),
success:function(msg){ alert(msg); window.location.reload(); }, error:function(msg){ alert(
"更新失败!"+msg); } })

在前台ajax函数那 把要传的中文字符串使用encodeURI(str,enc)函数处理一下

如果后台还是有乱码的话,

在后台使用URLDecoder.decode(str,enc)处理一下字符串

    String RContent = null;

try { RContent = URLDecoder.decode(content.getRContent(),"UTF-8");

   } catch (UnsupportedEncodingException e1) { e1.printStackTrace(); } attenRegistContent.setRContent(RContent);

 

ajax传值到后台,如果是中文字符串的话,可能会出现乱码的问题

标签:

原文地址:http://www.cnblogs.com/zhou-789profession/p/4235205.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!