我工作的小JSON例子,我得到了錯誤煎茶觸摸2 - 存儲 - [WARN] [Ext.dataview.NestedList#applyStore]指定的商店無法找到
[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
}
});
**
代碼View
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
這可能是對你有所幫助:HTTP ://www.sencha.com/forum/showthread.php?186957 – cclerville 2013-02-16 16:15:12