0

I am trying to to build an offline application in sencha touch 2 using mvc structure. In offline mode page displayed is blank. I checked developer tool and there was an error as

"Failed to load resource http://ipaddress/AppName/app/view/LoginViewport.js?_dc=1334316337812 "

We can also see in the above error, there is some data appended to "LoginViewPort.js", and that might be the problem. Please help.

4

3 回答 3

0

当我收到该错误时,这意味着我没有将文件放置在 Sencha Touch 期望的正确位置。可能是您创建了 VIEWS 目录,它正在 VIEW 中查找信息?你是这样定义的吗?

Ext.application({
    name: 'MyApp',
    views: ['LoginViewport'],
...

    Ext.define('MyApp.view.LoginViewport', {
...

我相信这意味着它将在视图文件夹中查找文件 LoginViewport.js。

于 2012-04-13T18:50:01.840 回答
0

我有同样的问题。即使 sencha 可以在视图文件夹中找到该文件。由于某种原因,它忽略了它。如果您将文件夹重命名为视图,它应该可以工作。至少这就是它在我的项目中所做的。

于 2012-05-02T02:09:24.090 回答
0

它适用于我们进行生产的那些。因为所有的mvc结构文件都会被拷贝到一个文件中。

于 2012-05-04T04:07:27.320 回答