0

私は小さなjsonの例に取り組んでいますが、エラーが発生しています

[WARN][Ext.dataview.NestedList#applyStore] The specified Store cannot be found "

ネストされたリストからストアにアクセスしようとすると

>ストアのコードはこちら

    Ext.define('kids.store.vids',{
    extend: 'Ext.data.Model',
    xtype: 'vids',
    config: {
        type: 'tree',
        fields: ['id' , 'title' ],
        root: { leaf: false },
        proxy:{
            type: 'ajax',
            url: 'resources/jsonfile/jsonfile.json',
            reader: {
                type: 'json',
                rootProperty: 'items.feed.Lang.Type'
            }
        },
        autoLoad: true
    }
});

**

意見

Ext.define('kids.view.VidList',{
    extend: 'Ext.Container',
    xtype: 'vidlist',
    fullscreen: true,
    requires: [
        'Ext.NestedList',
        'Ext.tab.Panel',
        'Ext.data.*',
        'kids.store.vids',
        'Ext.data.TreeStore',
        'Ext.dataview.NestedList',
    ],
    config: {
        items: [
            {
                xtype: 'nestedlist',
                title: 'video list from model vids',
                displayField: 'title',
                layout: 'vbox',
                store: 'vids',
            }
        ]
    }
});

私はここで何か悪いことをしていますか?

app.js にストア、ビューを追加しました

4

1 に答える 1

1

ストアを宣言するときは、xtype の代わりに storeId を使用してストアを識別します。

Ext.define('kids.store.vids',{
    extend: 'Ext.data.Model',
    config: {
        storeId: 'vids', // use this as the value of the 'store' property in your list
        type: 'tree',
        fields: ['id' , 'title' ],
        root: { leaf: false },
        proxy:{
            type: 'ajax',
            url: 'resources/jsonfile/jsonfile.json',
            reader: {
                type: 'json',
                rootProperty: 'items.feed.Lang.Type'
            }
        },
        autoLoad: true
    }
});
于 2013-02-16T16:34:06.583 に答える