3

我已经使用 sencha cmd 构建了 extjs 5 应用程序,我想在我的自定义 hmtl 页面中使用它。我有以下结构:

extjsapp
    .sencha
    app
    build
    ext
    packages
    ......
    bootstrap.js
    bootstrap.json
    app.js
    .......
customapp
    index.html
    script.js

我想做的是在我的 customapp/index.html 中请求 bootstrap.js,它应该从 extjsapp 文件夹加载所有包和 ext。默认情况下,它会尝试从与使用 boostrap.js 的位置相关的 customapp/ext 加载它们。如何制作/构建它,以便它从 extjsapp/ext 而不是 customapp/ext 加载 ext。

应该可以从任何位置使用 bootstrap.js 来加载 extjs 框架和在 extjs 文件夹中构建的所有必需的包。

4

1 回答 1

2

在该app.json文件中,您将看到有关类路径的条目。这用于告诉 Sencha Cmd 你的源文件在哪里。

同样在该文件中,您将看到有关 indexHtmlPath 的条目。这说明了 index.html 文件的位置。

/**
 * Comma-separated string with the paths of directories or files to search. Any classes
 * declared in these locations will be available in your class "requires" or in calls
 * to "Ext.require". The "app.dir" variable below is expanded to the path where the
 * application resides (the same folder in which this file is located).
 */
"classpath": "${app.dir}/app",
...
/**
 * The file path to this application's front HTML document. This is relative
 * to this app.json file.
 */
"indexHtmlPath": "index.html",

更改 ExtJS 库的位置涉及编辑隐藏文件 - .sencha/app/sencha.cfg. 那里有一个属性ext.dir——你需要改变。

于 2014-07-24T12:17:22.297 回答