0

嗨,我是 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"
4

1 回答 1

1

你可以迭代结果。

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

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

于 2012-05-18T07:22:03.863 回答