不推荐在主线程上使用同步XMLHttpRequest

时间:2015-05-28 18:38:04

标签: javascript jquery extjs extjs4 extjs4.1

  • 我试图从我的分机4.1中删除以下警告 应用。 主线程上的同步XMLHttpRequest因其对最终用户体验的不利影响而被弃用。 如需更多帮助,请查看http://xhr.spec.whatwg.org/

    • 所以我做了一些研究,在ext js中找到了以下链接。

ExtJS 4.2 - Possible causes of a "Sychronous XMLHttpRequest" warning?

  • 因为他们要求删除Ext.Loader并将其替换为 ext.require。
  • 所以我有三行包含ext.loader我需要更换 像这样的ext.require
Ext.Loader.setConfig({enabled:true});
Ext.Loader.setPath('here-aps.plugin', here-ext4Path.replace('/scripts/here-aps-extjs4', '/js/here-aps/plugin'));
Ext.Loader.setPath('here-aps', here-ext4Path + '/here-aps');

转换为

Ext.require.setConfig({enabled:true});
Ext.require.setPath('here-aps.plugin', here-ext4Path.replace('/scripts/here-aps-extjs4', '/js/here-aps/plugin'));
Ext.require.setPath('here-aps', here-ext4Path + '/here-aps');

0 个答案:

没有答案