好的,我了解了您的问题。在 Sencha Touch 2 中添加/删除 Ext.Container 中的项目,可以通过以下步骤完成:
Ext.Container.add({
xtype: 'container',
id: 'containerId',
layout: 'vbox',
items: [
{
xtype: 'container',
id: 'containerId1',
layout: 'hbox',
items: [
{
xtype: 'button',
id: 'buttonId1',
text: 'Button 1'
}
]
},
{
xtype: 'container',
id: 'containerId2',
layout: 'hbox',
items: [
{
xtype: 'button',
id: 'buttonId2',
text: 'Button 2'
}
]
}
]
});
Ext.Container.remove(Ext.getCmp('containerId1'));
其中,Ext.getCmp('containerId1')
表示获取到 Ext.Container 对象的引用,可以通过这个引用获取到 Ext.Container 中的所有项目,然后调用 remove 方法来删除该项目。
以上是 Sencha Touch 2 中添加/删除 Ext.Container 中的项目的推荐方法。如果您有任何其他问题,请随时问我。
领取专属 10元无门槛券
手把手带您无忧上云