继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

jquery1.4.2 ajax 中文乱码问题解决方案

慕婉清0083722
关注TA
已关注
手记 322
粉丝 72
获赞 277

         

前端ajax用POST方式: $.ajax({                type : "POST",                url : "**/save.do",                async : true,                dataType : "json",                data : "data=中文",                success : function(resp) {                    alert(resp.cr); //必须严格按照JSON的标准来                },                error : function() {                    alert('数据保存失败!');                }            });后台直接接收data参数即可:      @RequestMapping(value = "**/save.do", method = RequestMethod.POST)    public void saveBeizhu( @RequestParam(value = "data", required = false) String data,            HttpServletRequest request, HttpServletResponse response) throws Exception{        request.setCharacterEncoding("UTF-8");        log.error(data);        response.setCharacterEncoding("utf-8");        response.setContentType("text/html;charset=utf-8");        response.getWriter().print("{\"cr\":\"保存成功!\"}");    }


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP