fix(table): 修复竞态问题 (#2584)

This commit is contained in:
morning-star 2025-03-28 17:18:42 +08:00 committed by GitHub
parent b2c1a6130b
commit 40a19ae8fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1195,7 +1195,12 @@ layui.define(['lay', 'laytpl', 'laypage', 'form', 'util'], function(exports){
that.loading(true);
$.ajax({
// 4代表响应已完成
if (that._xhr && that._xhr.readyState !== 4) {
that._xhrAbort = true;
that._xhr.abort();
}
that._xhr = $.ajax({
type: options.method || 'get',
url: options.url,
contentType: options.contentType,
@ -1236,6 +1241,10 @@ layui.define(['lay', 'laytpl', 'laypage', 'form', 'util'], function(exports){
done(res, opts.type);
},
error: function(e, msg){
if (e && e.status === 0 && that._xhrAbort){
that._xhrAbort = false;
return;
}
that.errorView('请求异常,错误提示:'+ msg);
typeof options.error === 'function' && options.error(e, msg);
}