1
我嘗試使用extjs進行構建。我與建築師創建了應用程序。extjs sdk構建未創建
sencha create jsb -a http://localhost/coolApp/index.html -p app.jsb3
這是我在終端看到錯誤
phantomjs://webpage.evaluate():2
phantomjs://webpage.evaluate():1
/Applications/SenchaSDKTools-2.0.0-beta3/compat/scripts/phantomjs-jsb.js:299
ReferenceError: Can't find variable: Ext
這是我的app.js什麼樣子:我這一行啓動構建
Ext.Loader.setConfig({
enabled: true
});
Ext.application({
models: [
'gridPersoneel',
'gridAuto'
],
stores: [
'gridPersoneel',
'gridAuto'
],
autoCreateViewport: true,
name: 'coolApp'
});
,而我的文件夾結構是這樣的:
coolApp extjs resources
在ExtJS的是位於
任何具有相同的經歷SDK和ExtJS的4.1文件?我正在使用Mac進行編譯
我也遇到類似的問題。 – Nicodemuz
我在嘗試創建一個新的sdk構建時遇到了類似的問題。但是在這裏您正在嘗試做一個應用程序構建。因此,它可能不是一個問題,我認爲你錯過了ext-all/ext-debug文件在index.html中 – sunnychayen