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

ajax乱码问题

时间:2015-12-20 01:53:39      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

ajax的乱码问题分 提交中文乱码 和 返回中文乱码

当提交中文乱码时在ajax中加入

contentType: "application/x-www-form-urlencoded; charset=utf-8", 

即可解决

当返回中文乱码的时候

res.setContentType("text/html;charset=utf-8");
        res.setHeader("Cache-Control", "no-cache");
        PrintWriter pw=res.getWriter();
        if(dimensionService.isexist()!=null){
            Dimension dimension=dimensionService.isexist();
            dimensionService.delete(dimension);
            String    studentName=studentService.getStudnetById(dimension.getStudentId()).getName();
            System.out.println(studentName);
            pw.write(studentName);
        }else{
            pw.write("falses");
        }

加入

        res.setContentType("text/html;charset=utf-8");
        res.setHeader("Cache-Control", "no-cache");
        PrintWriter pw=res.getWriter();

即可解决

切记第三句要在最后面

ajax乱码问题

标签:

原文地址:http://www.cnblogs.com/ouzilin/p/5060178.html

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