我有一个Sencha Touch 2应用程序(非MVC),它运行良好,除了一个JS文件。在那里我定义了一个商店。
在app.json
中,我还包含sencha-touch.js
和此文件。它正在构建正确,但当我打开页面时,它说的是
Object has no method 'create'
我的app.json:
{
"path": "touch/sencha-touch.js",
"x-bootstrap": true
},
{
"path": "res/mystore.js"
},
{
"path": "bootstrap.js",
"x-bootstrap": true
},
{
"path": "app.js",
"bundle": true, /* Indicates that all class dependencies are concatenated into this file when build */
"update": "delta"
}
我尝试了很多东西,但似乎没有任何工作,改变顺序,为mystore.js更改x-bootstrap为true,但没有。有什么想法吗?
提前致谢!
答案 0 :(得分:0)
似乎问题是订单。在我改变之后:
{
"path": "touch/sencha-touch.js",
"x-bootstrap": true
},
{
"path": "bootstrap.js",
"x-bootstrap": true
},
{
"path": "app.js",
"bundle": true, /* Indicates that all class dependencies are concatenated into this file when build */
"update": "delta"
},
{
"path": "res/mystore.js"
}
效果很好。