我是 Sencha Touch 的新手,我正在尝试构建一个应用程序(没有 Web 应用程序,但使用 PhoneGap 原生),其中包含一个应该通过单击按钮添加项目的列表。我一直在寻找几天,但找不到任何有用的解决方案。
我如何更改我的代码,我不必将硬编码值放入我的
data:[]
Ext.define('MyApp.store.Note', {
extend: 'Ext.data.Store',
requires: ['MyApp.model.Note'],
config: {
model: 'MyApp.model.Note',
data:
[
{id: 1, content: 'Blog 1', categoryid: 1, category: 'Nonsense' },
{id: 2, content: 'Blog 2', categoryid: 1, category: 'Nonsense' },
{id: 3, content: 'Blog 3', categoryid: 2, category: 'Food' }
],
}
});
我正在创建我的列表
Ext.define('MyApp.view.NoteList',{
extend: 'Ext.dataview.List',
xtype: 'notelist',
config: {
store: "Note", //will create the store later
itemTpl: [
'<div>',
' <div>{content}</div>',
' <p>{category}</p>',
'</div>'
],
onItemDisclosure: function(record,btn,index) {
this.push(Ext.create('MyApp.view.RegisterPanel'));
//when the little arrow on the right is tapped
}
},
});