为什么我直接就跳进了error:function里面,没有进行success:function

来源:7-2 SpringBoot配置全局的异常捕获 - ajax形式

Each_other

2019-12-07 14:49

$.ajax({
    url:"/ErrorController/ajaxError",
    type:"POST",
    async:false,
    success:function (data) {
        if (data.status ==200 && data.msg == "OK"){
            alert("succcess");
        } else{
            alert("error:" +data.msg);
        }
    },
    error: function (response,ajaxOptions,thrownError) {
        alert("error");
    }
});


handler.java

@RestController
public class AjaxExceptionHandler {

    @ExceptionHandler(value = Exception.class)
    public JSONResult defaultExceptionHandler(HttpServletRequest request,Exception e) throws Exception{
        e.printStackTrace();
        return JSONResult.errorException(e.getMessage());
    }
}

ajaxError.html:

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>异常捕获</title>
    <script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>

</head>
<body>
    <h1>测试ajax错误异常</h1>

    <script th:src="@{/js/ajaxerror.js}"></script>
</body>
</html>

controller里面的代码:

@RequestMapping("/testAjaxError")
public String testAjaxError(){
    return "/thymeleaf/ajaxError";
}


@RequestMapping("/ajaxError")
@ResponseBody
public JSONResult ajaxError(){

    int a=1/0;

    return JSONResult.ok();
}


写回答 关注

2回答

  • 慕妹9393217
    2020-06-10 18:21:35

    将类注解

    @ControllerAdvice

    改成

    @RestControllerAdvice

    就好了


  • qq_夕落黄昏_0
    2019-12-26 15:16:22
    AjaxExceptionHandler类上没有加@controlleradvice注解,可能异常统一处理并未生效,导致进入了error function


SpringBoot开发常用技术整合

SpringBoot 极简开发的框架整合利器

102171 学习 · 508 问题

查看课程

相似问题