1

我无法更新我的 Sencha Touch web 应用程序,而无需清除浏览器缓存以使新版本正常工作。如果我不手动清除缓存,我会收到此错误:

Error evaluating http://localhost/alpha1/app.js with message: SyntaxError: Unexpected token ,

一旦我清理了缓存,它就可以完美运行。问题可能来自哪里?

4

1 回答 1

2

在 app.json 中设置updateapp.js 的属性:full

{
    "path": "app.js",
    "bundle": true,  /* Indicates that all class dependencies are concatenated into this file when build */
    "update": "full"
}
于 2013-10-14T10:30:58.093 回答