Magento 2:显示加载程序,直到所有ajax调用未完成


Answers:


16

您可以尝试在ajax调用下面尝试在运行runnig时显示加载程序。

jQuery.ajax({
    url: url,
    type: 'POST',
    dataType: 'json',
    showLoader: true //use for display loader 
}).done(function (data) {
    return true;
});

我想将此名称作为Magento 2中默认的Ajax调用。我不想调用我的Ajax。
Ashish Jagnani

使用可以将ajaxStart()和ajaxComplete()函数用于显示和显示加载程序。
杰明·帕里克(Jaimin Parikh)

我试过ajaxComplete()和ajaxStop(),但是都没有用,不知道为什么。
Ashish Jagnani

试试我的解决方案(我有相同的问题)magento.stackexchange.com/a/171485/40609
Mykhailo Shatilov
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.