Sencha touch错误:未捕获错误即使已加载文件,也未声明以下类:'Ext.data.model'

时间:2014-05-06 08:33:34

标签: extjs sencha-touch-2

“未捕获错误:即使已加载文件,也未声明以下类:'Ext.data.model'。请检查相应文件的源代码以查找可能的拼写错误:'touch / src / data / model .js“

我收到此错误,我不知道为什么要生成。这是我的代码有一个看,因为我已经变成了每一块石头但仍然没有答案。似乎每一个领域我都会花几个小时编写代码来弄清楚sencha touch的错误

App.js

//<debug>
Ext.Loader.setPath({
    'Ext': 'touch/src',
    'TutsPlus': 'app'
});
//</debug>

Ext.application({
    //http://docs.sencha.com/touch/2-1/#!/api/Ext.app.Application
    name: 'TP',

    views: ['Main'],
    models: ['mtask'],
    stores: ['stask'],

    launch: function() {
        // Destroy the #appLoadingIndicator element
        Ext.fly('appLoadingIndicator').destroy();

        // Initialize the main view
        Ext.Viewport.add(Ext.create('TP.view.Main'));
    }

});

在Store stask.js

    Ext.define('TP.store.stask', {
    extend: 'Ext.data.Store',

    config: {
        //Define which model we are going to use for our store
        model: 'TP.model.mtask',
        data: [
            {label: 'Make the change'},
            {label: 'Take the trash'},
            {label: 'Clear the room'},
            {label: 'Wake Up Early'}
        ]

    }
});

在Model mtask.js

Ext.define('TP.model.mtask', {
    extend: 'Ext.data.Model',

    config: {

        fields: [
            {name: 'label', type: 'string'},
            {nae: 'done', type: 'boolean', defaultValue: false}
        ]
    }

});

在视图文件夹Main,js

Ext.define('TP.view.Main', {
    extend: 'Ext.Panel',
    xtype: 'main',

    requires: [
        'Ext.TitleBar',
        'Ext.dataview.List'
    ],

    config: {
        layout: 'vbox',
        items: [
            {
                docked: 'top',
                xtpe: 'titlebar',
                title: 'Note Taker',
                items: [
                    {
                        iconCls: 'add',
                        iconMask: true,
                        align: 'right',
                        id: 'add-button'
                    }
                ]
            },
            {
                xtype: 'list',
                store: 'stask'





            }
        ]
    }
});

1 个答案:

答案 0 :(得分:0)

由于某种原因,您的模型类未被声明。尝试找出语法错误和案例的原因。  尝试更改:

nae:'完成'名称:'完成'