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

ajax返回中文乱码问题

时间:2015-10-08 18:00:47      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

ajax返回值中如果有中文,会出现乱码,解决方案:

@RequestMapping(value="/release", method=RequestMethod.POST)
public @ResponseBody ResponseEntity<String> release(Comment comment, @RequestParam("userId") String userId){
		
	commentService.publish(comment,userId);
	PageModel<LessonCommentVo> pageModel = this.getCommentData(comment.getLessonId());
	String commentHTML = this.getCommentHTML(pageModel);
	HttpHeaders responseHeaders = new HttpHeaders();
        responseHeaders.setContentType(new MediaType("text","html",Charset.forName("UTF-8"))); 
	return new ResponseEntity<String>(commentHTML, responseHeaders, HttpStatus.OK);
}

 返回值类型不能直接使用String ,要使用ResponseEntity<String>包装

ajax返回中文乱码问题

标签:

原文地址:http://www.cnblogs.com/zhoucl/p/4861574.html

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