0

ネストされたリストを含むビューがあり、ネストされたリストにデータを追加する方法を知りたいです。

Ext.define('app.view.myview', {
extend: 'Ext.Panel',


config: {
    layout: 'vbox',
    fullscreen: true,
    items: [
        {
            xtype: 'horizontallistview',
            id: 'oldotheruserhorizontallistview',
            data: **this.data.otheruser.cards**,
            flex: 1,
        },
        {
            xtype: 'horizontallistview',
            data: **this.data.thisuser.cards**,
            flex: 1,
        }
    ],


}});

私の店はこんな感じです。

data: [
        {
            id : 20001,
            thisuser: {
                cards: [
                    {
                        typeid: 5,
                        quantity:12,
                    },
                    {
                        typeid: 5,
                        quantity:12,
                    },
                    {
                        typeid: 5,
                        quantity:12,
                    },
                ]
            },
            otheruser: {
                cards: [
                    {
                        typeid: 5,
                        quantity:12,
                    },
                    {
                        typeid: 5,
                        quantity:12,
                    },
                    {
                        typeid: 5,
                        quantity:12,
                    },
                ]
            },
        },]

それはどのように機能しますか?私が今持っているように、「data.this.data.otheruser.cards」は機能しません。

4

0 に答える 0