我试图从我的分机4.1中删除以下警告 应用。 主线程上的同步XMLHttpRequest因其对最终用户体验的不利影响而被弃用。 如需更多帮助,请查看http://xhr.spec.whatwg.org/。
ExtJS 4.2 - Possible causes of a "Sychronous XMLHttpRequest" warning?
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');