我试图扩展第三方课程。代码是这样的。注意我指定了加载openGL.view
的位置。
Ext.Loader.setPath({
'openGL.view': 'C:/Users/«username»/Documents/third-party/openGL/view/'
});
Ext.define('myOpenGL.view.Qxga',{
extend: 'openGL.view.Uxga',
alias: 'widget.qxga',
itemId: 'qxga',
requires: [
'openGL.view.Uxga',
'myOpenGL.view.QxgaController'
],
controller: 'QxgaController'
});
当我构建它时,我会收到这样的错误:
[ERR] Failed to resolve dependency openGL.view.Uxga for file myOpenGL.view.Qxga
[ERR]
[ERR] BUILD FAILED
[ERR] com.sencha.exceptions.ExNotFound: Unknown definition for dependency : openGL.view.Uxga
[ERR]
[ERR] Total time: 6 seconds
[ERR] The following error occurred while executing this line:
C:\Users\«username»\Applications\Sencha\Cmd\5.1.0.26\plugins\ext\current\plugin.xml:403: The following error occurred while executing this line:
C:\Users\«username»\Documents\workspace\openGL\.sencha\app\build-impl.xml:378: The following error occurred while executing this line:
C:\Users\«username»\Documents\workspace\openGL\.sencha\app\init-impl.xml:303: com.sencha.exceptions.ExNotFound: Unknown definition for dependency : openGL.view.Uxga
有些问题:
openGL.view.Uxga
?build-impl.xml
的内容,但取得了不同程度的成功。我需要做什么,有没有办法在不修改文件的情况下做同样的事情?说某种覆盖或命令行参数?setPath
执行此操作,则third-party
目录可能不在同一位置。有没有办法包含Windows环境变量或类似的东西?答案 0 :(得分:1)
Sencha Cmd不知道Ext.Loader.setPath
调用,Cmd不执行JavaScript。相反,在您的app.json
中,您可以将C:/Users/«username»/Documents/third-party
添加到classpath
配置中。 classpath
是逗号分隔的(我认为它现在甚至可能是一个数组)Cmd将用于检查其中的文件以搜索Ext JS类(或通过某些注释标记)的路径列表@require和@class)。
"classpath": "app,C:/Users/«username»/Documents/third-party"