当前位置: 代码迷 >> Ajax >> 解决sencha touch 2 AJAX提交中文乱码有关问题
  详细解决方案

解决sencha touch 2 AJAX提交中文乱码有关问题

热度:1003   发布时间:2012-09-11 10:49:03.0
解决sencha touch 2 AJAX提交中文乱码问题

解决方法: 提交的时候编码

 params: {
         noteName:encodeURI(encodeURI(noteName)),
         content:encodeURI(encodeURI(noteContent)),
},


之后在后台

 URLDecoder.decode(request.getParameter("noteName"),"utf-8") 这样获取 就好了

感谢肥肥!~

  相关解决方案