我正在尝试在 Sencha-Touch 2 中显示简单数据列表。由于某种原因,它没有显示数据,我无法弄清楚。我得到两个标题栏:带有“最近帖子”的正确标题和下面的空白标题。我不知道为什么会这样。也许这与显示器的其余部分相冲突?
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}'
});