鉴于这些表格/字段:
人:
let requestURL = URL(string: "http://ip-api.com/json")!
...
let task = session.dataTask(with: requestURL) {
peopleStats:
id
socialID
name
我试图从peopleStats(按ID DESC排序)获取给定的socialID数组(每个socialID 3条记录):
id
socialID
drVisitsAmount
receipAmounts
operationsAmount
但我只得到3条记录而不是每条3条记录。我怎样才能获得这些数据?
提前谢谢你,