在success:function(data){}下面加个error:function(){},看看是不是出错了走了error。如果是,说明返回值类型不符合要求。
比如:下面代码返回String类型。
@RequestMapping(value = "/v1/doUpdate", method = RequestMethod.GET) @ResponseBody public String doUpdate(HttpServletRequest request, HttpServletResponse response) throws IOException { return mrInfoService.doUpdate(request); }