我正在使用jquery $ .post将表单数据更新为MVC方法,但有时ajax post调用被中止

时间:2019-04-15 11:18:44

标签: jquery ajax .post

if (_form.valid() && isValid == true) {

        $.post(getUrlFromRootPath(_form.attr("action")), _form.serialize(), function (data) {
                if (data.isvalid != null && data.isvalid == false) {
                }
         });

在浏览器网络流量中,它显示请求已中止。

0 个答案:

没有答案