我有一个Ext应用程序在Ext 4中运行良好,但我在ext 5中收到错误。我正在加载ext-all.js
。
Ext.application({ // undefined method here
});
我需要加载什么?
答案 0 :(得分:1)
如果您提供了更多代码,以便我们可以看到您的错误在哪里,那就更好了。但回答你的问题,你需要的最低限度是:
Ext.application({
name : 'MyApp', // Your app name here
launch : function() {
// Your code here
Ext.Msg.alert('Test', 'Hello World!');
}
});
如果此代码不起作用,您可能还没有导入所需的所有文件。