ajax请求,访问路径status为canceled

$("#shebeiconfig").ajaxSubmit({
    type : "post",
    dataType : "json", //数据类型
    url : "/deviceConfig/submitConfigFile",
    success : function (data) {
        alert("cheng");
        console.log(data);
    },
    clearForm:false,
    restForm:false
});
 
 

上面是我的代码使用了layui+springboot

每次提交完都有莫名奇妙的问题

解决方法是将提交按钮的button更换为a

猜你喜欢

转载自blog.csdn.net/wwxthinking/article/details/79447426