2

我怎样才能从“年龄”中获得价值?我已经有了“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
...`
4

2 回答 2

1
for (var i = 0 ; i < record.getCount() ; i ++){
    console.log(record.getAt(i).data.age);
}
于 2012-11-18T09:32:48.547 回答
1

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

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

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

于 2012-06-29T03:50:16.983 回答