我的应用程序中有一个嵌套列表,在叶节点上我有一个地图按钮,我将 MapView 链接到此按钮,它与 MapView 很好,现在当我点击 MapView 的后退按钮时,我得到一个空查看而不是带有以下警告的叶节点
mainlist
WARN][Ext.Component#constructor]使用已使用的 id ( ) 注册组件。请确保现有组件已被销毁
[WARN][Ext.Component#constructor] 使用已使用的 id (`detailcard`) 注册组件。请确保现有组件已被销毁 (`Ext.Component#destroy()`.
[WARN][Ext.Component#constructor] 使用已使用的 id (`description`) 注册组件。请确保现有组件已被销毁 (`Ext.Component#destroy()`.
我的地图按钮
onDetailButtonTap: function(activeItem) {
var record = this;
Ext.Viewport.animateActiveItem((
Ext.create('App.view.MapView')),
{
type: 'slide',
direction:'left',
}).show();
},
我的地图视图
handler: function(){
//var x=document.getElementById("textt");
//alert(x.innerHTML);
Ext.Viewport.animateActiveItem((
Ext.create('App.view.Sections')),
{
type: 'slide',
direction:'left',
}).show();
}
我需要一些认真的帮助