gpt4 book ai didi

Swift后台数据任务

转载 作者:行者123 更新时间:2023-11-28 05:55:09 25 4
gpt4 key购买 nike

我正在尝试在 Swift 中发出后台发布请求。我知道我应该配置一个后台 URLSession 并使用委托(delegate)而不是完成处理程序。

这是我正在使用的委托(delegate):

class Delegate:NSObject, URLSessionDelegate, URLSessionTaskDelegate,
URLSessionDataDelegate{
var completionHandler:((String) -> Void)?
func urlSession(_ session: URLSession,
dataTask: URLSessionDataTask,
didReceive response: URLResponse,
completionHandler: @escaping (URLSession.ResponseDisposition) -> Void) {
completionHandler(URLSession.ResponseDisposition.allow)
}
func urlSession(_ session: URLSession,
dataTask: URLSessionDataTask,
didReceive data: Data) {
let responseString = String(data: data, encoding: .utf8)!
if let handler = self.completionHandler {
handler(responseString)
session.finishTasksAndInvalidate()
}
}
}

这就是我启动数据任务的方式:

let url = URL(string: endpoint)
var request = URLRequest(url: url!)
request.setValue("text/xml", forHTTPHeaderField: "Content-Type")
request.httpBody = body.data(using: String.Encoding(rawValue: String.Encoding.utf8.rawValue))
request.httpMethod = "POST"
let delegate = Delegate()
delegate.completionHandler = {
data in
// use the data
}
let config = URLSessionConfiguration.background(withIdentifier: "id-background")
let session = URLSession(configuration: config, delegate: delegate, delegateQueue: nil)
let task = session.dataTask(with: request)
task.resume()

这仍然只适用于前台。

我在这里错过了什么?

最佳答案

你需要实现AppDelegate方法

然后把这个放到你的委托(delegate)中

此外,您应该实现后台模式。您的问题的相对答案可以在这里找到。 URLSession.datatask with request block not called in background

关于Swift后台数据任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51684021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com