我一直在尝试使用 Sencha Cmd 为我们的 ExtJS 4.2.2 项目设置,并且构建成功完成,但是当我尝试运行应用程序时,我得到了这个:
类型错误:comp 为空
我正在运行测试版本,所以 app.js 被连接但没有被缩小。
如果我运行生产版本,也会发生同样的事情。
如果我从原始源代码文件执行,应用程序运行良好。
它发生在生成的 app.js 中的这段代码中:
/**
* Creates new LoadMask.
* @param {Object} [config] The config object.
*/
constructor : function(config) {
var me = this,
comp;
if (arguments.length === 2) {
if (Ext.isDefined(Ext.global.console)) {
Ext.global.console.warn('Ext.LoadMask: LoadMask now uses a standard 1 arg constructor: use the target config');
}
comp = config;
config = arguments[1];
} else {
comp = config.target;
}
// Element support to be deprecated
if (!comp.isComponent) {
if (Ext.isDefined(Ext.global.console)) {
Ext.global.console.warn('Ext.LoadMask: LoadMask for elements has been deprecated, use Ext.dom.Element.mask & Ext.dom.Element.unmask');
}
comp = Ext.get(comp);
this.isElement = true;
}
me.ownerCt = comp;
if (!this.isElement) {
me.bindComponent(comp);
}
me.callParent([config]);
if (me.store) {
me.bindStore(me.store, true);
}
},