1.在SpringMVC框架上使用json传输数据出现了后台中文数据传到前台变成"???"的问题,解决方法如下:
@ResponseBody
@RequestMapping(value = "/accountManagement.getMessage",method = RequestMethod.POST, produces = "text/json;charset=UTF-8")
public String doGetMessage(){
Map map = getUserService().getUserMessage(Param.getUserid());
JSONObject json = new JSONObject();
json.put("userid",Param.getUserid());
json.put("username",map.get("username"));
json.put("gender",map.get("gender"));
json.put("education",map.get("education"));
return json.toString();
}
添加produces = "text/json;charset=UTF-8"就能解决问题。
2.前台向后台传输数组数据的时候,代码应为
$.ajax({
url: "",
type: "post",
data: {
array: new Array(),
},
dataType: "json",
success: function(data){},
})
后台使用
@RequestParam(value ="array[]")String[] array
来接收。