当应用程序为后台

时间:2017-06-06 03:11:40

标签: ios swift3 background nsurlsessiondatatask

当应用处于后台或暂停状态时,我尝试将数据发布回服务器。我已经使用yes和No actions实现了可操作的推送通知。我必须更新后端,点击是或否。 如果应用程序在前台运行但是在后台或挂起状态下失败,我的下面的代码工作正常。任何人都知道如何处理这个问题。

func updateEmployeeStatus(){

    let json = ["id": "23", "empId": "3242", "status": "Success"] as Dictionary<String, String>


    let jsonData = try? JSONSerialization.data(withJSONObject: json)

    // create post request
    let url = URL(string: "https://10.91.60.14/api/employee/status")!
    var request = URLRequest(url: url)
    request.httpMethod = "POST"

    // insert json data to the request
    request.httpBody = jsonData

    let task = URLSession.shared.dataTask(with: request) { data, response, error in
        guard let data = data, error == nil else {
            print(error?.localizedDescription ?? "No data")
            return
        }
        let responseJSON = try? JSONSerialization.jsonObject(with: data, options: [])
        if let responseJSON = responseJSON as? [String: Any] {
            print("The response is",responseJSON)
        }
    }

    task.resume()
}

1 个答案:

答案 0 :(得分:1)

要在应用程序处于后台状态时启动数据任务,您不能使用共享的“URLSession”。您必须使用后台配置

实例化“URLSession”
let bundleID = Bundle.main.bundleIdentifier
let configuration = URLSessionConfiguration.background(withIdentifier: "\(bundleID).background")
configuration.sessionSendsLaunchEvents = true
configuration.isDiscretionary = false
configuration.allowsCellularAccess = true
let session = Foundation.URLSession(configuration: configuration, delegate: self, delegateQueue: nil)

并使用该会话来完成数据任务

请注意,使用后台会话配置时,您无法使用完成块创建数据任务。你应该使用委托。

希望有所帮助。