質問

When my Ext Js application loads up, I get an error for a missing class. I checked the console's Net tab and found out that the files are loaded in wrong order. Meaning the class which requires another class to work is loaded after that class. Is there a way to change the loading order of files in Ext Js?

役に立ちましたか?

解決

Use a requires config in the depending class:

Ext.define('Depender', {
    requires: 'Dependee',

    // ...
});

This will tell the loader, that class Dependee must be loaded before class Depender can be instantiated.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top