我在magento admin中使用原型Ajax.PeriodicalUpdater来定期获取一些数据。由于我需要在每个页面上实现它,因此javascript处于首位。
问题是Magento Loader会出现在每个ajax请求上,即我的情况下每两秒钟显示一次。
我有没有办法在Magento管理员中为我的Ajax请求隐藏加载程序?
答案 0 :(得分:1)
只需添加 loaderArea:false 选项即可。 例如:
new Ajax.PeriodicalUpdater('items', '/items', {
method: 'get', frequency: 3, decay: 2,loaderArea:false
});