代码之家  ›  专栏  ›  技术社区  ›  O-mkar

当我得到位置时,如何进行后台网络呼叫?

  •  3
  • O-mkar  · 技术社区  · 7 年前

    当在后台更改位置时,我想将位置更新到服务器。我希望在每次收到重大位置更改时,都能以安全的方式在后台更新位置。我怎么打网络电话?

     func endBackgroundUpdateTask() {
            UIApplication.shared.endBackgroundTask(self.backgroundUpdateTask)
            self.backgroundUpdateTask = UIBackgroundTaskInvalid
        }
    
    
        func scheduledLocationManager(_ manager: APScheduledLocationManager, didUpdateLocations locations: [CLLocation]) {
            print(locations.last?.description ?? "no location")
            self.backgroundUpdateTask = UIApplication.shared.beginBackgroundTask(expirationHandler: {
                Alamofire.request("https://testomkar.herokuapp.com/log", method: .post, parameters: ["log":locations.last?.description ?? "no location"]).validate().responseJSON(completionHandler: { (responce) in
                    self.endBackgroundUpdateTask()
                })
            })
    
    
        }
    
    1 回复  |  直到 7 年前
        1
  •  2
  •   O-mkar    7 年前

    如果应用程序处于后台状态,则获取 UIBackgroundTaskIdentifier

     func scheduledLocationManager(_ manager: APScheduledLocationManager, didUpdateLocations locations: [CLLocation]) {
    
        print(locations.last?.description ?? "no location")
    
        // Get the background identifier if the app is in background mode
        if UIApplication.shared.applicationState == .background {
           backgroundUpdateTask = UIApplication.shared.beginBackgroundTask { [weak self] in
                if let strongSelf = self {
                    UIApplication.shared.endBackgroundTask(strongSelf.backgroundUpdateTask)
                    self.backgroundUpdateTask = UIBackgroundTaskInvalid
                }
            }
        }
    
        // Call the api to update the location to your server
        Alamofire.request("https://testomkar.herokuapp.com/log", method: .post, parameters: ["log":locations.last?.description ?? "no location"]).validate().responseJSON(completionHandler: { (responce) in
    
               //API completion block invalidate the identifier if it is not invalid already.
               if self.backgroundUpdateTask != nil && self.backgroundUpdateTask != UIBackgroundTaskInvalid {
                     UIApplication.shared.endBackgroundTask(backgroundUpdateTask)
                     self.backgroundUpdateTask = UIBackgroundTaskInvalid
               }
         })
    }