修复在HTTP/1.x下开多个窗口访问非常慢的问题

This commit is contained in:
GoEdgeLab
2023-04-19 21:03:46 +08:00
parent f65d0ed970
commit 39f8059600
7 changed files with 21 additions and 9 deletions

View File

@@ -2312,7 +2312,9 @@ window.Tea.Action = function (action, params) {
.then(function () {
// console.log("done");
if (typeof (_doneFn) == "function") {
_doneFn.call(Tea.Vue, {});
setTimeout(function () {
_doneFn.call(Tea.Vue, {});
})
}
});
};