ajax请求spring mvc controller,返回中文字符串显示乱码

前端之家收集整理的这篇文章主要介绍了ajax请求spring mvc controller,返回中文字符串显示乱码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

controller:

@RequestMapping("/checkName")

@ResponseBody

public String checkName(String puName){

.............

return "该用户名不存在";

}


ajax:

$.ajax({

type:'post',

url:'checkName',

data:{"puName":$("#puName").val()},

dataType:'text',---------------------------->必须改为json才不显示乱码

success:function(result){

alert(result);

}

}

)'

原文链接:https://www.f2er.com/ajax/161735.html

猜你在找的Ajax相关文章