将其放入 Items EXT JS 时不显示面包屑

Not show Breadcrumb when put it in Items EXT JS

我有关于面包屑的演示,当我使用时:

initComponent: function() {
    var store = new ABC.store.Files();
    this.width = 500;
    this.tbar = [{
        xtype: 'breadcrumb',
        store: store,
        showIcons: true,
        selection: store.getRoot()
    }];

    this.callParent();
}

Breadscrumb会正常创建。但是当我创建它时使用:

items:[{
        xtype: 'breadcrumb',
        store: 'ABC.store.Files',
        showIcons: true,
        selection: 'root'
    }],
renderTo:Ext.getBody()

未创建。我不知道怎么办!你能解释一下为什么吗?

先尝试声明您的商店:

var myStore = new ABC.store.Files();

然后,在您的items

中使用它
items:[{
    xtype: 'breadcrumb',
    store: myStore,
    showIcons: true,
    selection: myStore.getRoot()
}],