从Ext.util.MixedCollection获取值?

时间:2012-04-21 11:22:49

标签: extjs

如何从'年龄'获得价值? 我已经有'record.data.items',但我无法继续。我想要年龄的价值。任何人都可以帮助我吗?

`Ext.util.MixedCollection

...
items: Array[3]
    0: c
        data: Object
            age: "4"
            id: "1"
            name: "sam"
    1: c
    2: c
    length: 3
    __proto__: Array[0]
keys: Array[3]
length: 3
...`

2 个答案:

答案 0 :(得分:1)

查看此链接: http://docs.sencha.com/ext-js/4-0/#!/api/Ext.util.MixedCollection

您可以使用getAt()方法获取集合中的项目。

要遍历列表,请将0循环到getCount()

答案 1 :(得分:1)

for (var i = 0 ; i < record.getCount() ; i ++){
    console.log(record.getAt(i).data.age);
}