如何从列表中获取数据

时间:2012-05-18 05:37:48

标签: javascript sencha-touch-2

您好我是sencha touch 2.我正在使用Web服务。它返回列表中的数据。 所以如何迭代列表中的数据

这里是输出:

request: Array[2]
0: Object
Address: "1 Bangalore"
Name: "Vinay"
__type: "Customer:#WcfService1"
__proto__: Object
1: Object
Address: "1 Kerala"
Name: "Sujay"
__type: "Customer:#WcfService1"

1 个答案:

答案 0 :(得分:1)

你可以迭代结果。

for (person in request) {
   doSomethingWithPerson(person);
}

你的人只是一个具有.Name和.Address属性的对象。