我試圖在Sencha-Touch 2中顯示簡單數據的列表。由於某種原因,它不顯示數據,我無法弄清楚。我得到兩個標題欄:正確的標題與「最近的帖子」和下面的空白。我不知道爲什麼會這樣。也許這與顯示屏的其他部分相沖突?無法獲取視圖以在Sencha Touch中顯示存儲數據
Ext.define('GS.view.NewBlog',{
extend: 'Ext.navigation.View',
xtype: 'newblog',
requires: [
'Ext.dataview.List',
'Ext.TitleBar'
],
config: {
title: 'Blog',
iconCls: 'star',
items: {
docked: 'top',
xtype: 'titlebar',
title: 'Recent Posts'
}, // end items
store: {
fields: ['title','author'],
data: [
{title: 'This is the first Title', author: 'John Smith'},
{title: 'This is the second title', author: 'Jane Doe'}
] // end data
} // end store
}, // end config
itemTpl: '{title}'
});
在您查看有沒有列出。對 ? –