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

$.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);

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。