如何在 swift 中使用 Alamofire 从 API 中提取数千条数据?

问题描述 投票:0回答:1

我创建了一个活动应用程序,该应用程序用于注册活动的参与者。参与者列表将被拉至 API URL。当拉动 20 多名到 400 多名参与者时,需要 1 秒到 3 分钟。但当吸引数千名参与者时,需要 15 分钟或更长时间才能完成。我无法弄清楚,如果互联网连接是问题还是设备问题,因为在我的设备中我安装了另一个应用程序,其中也提取了数千个数据,但只需要 5 分钟即可完成。希望我解释得很好。请帮助我解决这个问题,因为我正处于用户测试阶段。如果您需要我的代码来提取下面包含的数据。

APIService.swift

  func getParticipants(enteredPincode: String,
                     participantType: ParticipantType,
                     completionHandler: @escaping (([Attendee]?, NetworkError?) -> Void))

{
    
    guard let attendeesURL = URL(string: "\(GET_PARTICIPANTS_URL)/\(enteredPincode)/\(participantType)") else {
        completionHandler(nil, .invalidURL)
        return
    }
    
    let sessionManager = Alamofire.SessionManager.default
    sessionManager.session.getAllTasks { (tasks) in
        tasks.forEach({ $0.cancel() })
    }

    Alamofire.request(attendeesURL, method: .get, encoding: JSONEncoding.default).responseJSON(completionHandler: { (response) in
        
        guard HelperMethod.reachability(responseResult: response.result) else {
            completionHandler(nil, .noNetwork)
            return
        }
        
       

        if let statusCode = response.response?.statusCode {
      
            switch(statusCode) {
            case 200:
            if let jsonArray = response.result.value as? [[String : Any]] {
                
                for anItem in jsonArray {
                    if let eventparticipants = anItem["event_participants"] as? [[String : Any]] {
                        var extractedAttendees = [Attendee]()
                        
                        for participants in eventparticipants{
                            let attendee = Attendee.init(JSON: participants)
                            extractedAttendees.append(attendee!)
                            extractedAttendees = extractedAttendees.sorted(by: { (Obj1, Obj2) -> Bool in
                                let Obj1_Name = Obj1.lastName
                                let Obj2_Name = Obj2.lastName
                                return (Obj1_Name.localizedCompare(Obj2_Name) == .orderedAscending)
                            })
                        }
                        completionHandler(extractedAttendees, nil)
                    }
                }
            }
            
    
       case 400:
        completionHandler(nil, .badRequest)
       case 404:
        completionHandler(nil, .invalidCredentials)
       case 409:
        completionHandler(nil, .notSuccessful)
       case 500:
        completionHandler(nil, .serverError)
       default:
        completionHandler(nil, .uncapturedStatusCode)

                
            }
        }
    })
}
ios swift alamofire
1个回答
2
投票

两个有助于加快速度的想法。

  1. 对 API 进行分页,这样您就不必在一次请求中下载所有与会者。用户无法一次看到全部,那为什么要一次全部下载呢?

  2. 让服务器对与会者进行排序,然后再将其发送给您,这样您就不必花时间自己做这件事。

© www.soinside.com 2019 - 2024. All rights reserved.