ajax请求成功但不执行success-function回调函数的问题

在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); }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgdjsf.html