gpt4 book ai didi

swift - 在 Swift 3 中使用 downloadTask 没有这样的文件或目录错误

转载 作者:搜寻专家 更新时间:2023-11-01 05:34:43 26 4
gpt4 key购买 nike

我正在尝试使用 swift 3 上的 downloadTask 后台函数获取 URL 的内容。使用 dataTask,一切正常。但是,在使用 downloadTask 函数时,将调用我的 didCompleteWithError 委托(delegate)。当我检查服务器发送的响应时,我看到状态代码是 200。

这是错误信息:

Optional(Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory" UserInfo={NSErrorFailingURLKey=https://api.met.no/weatherapi/locationforecast/1.9/?lat=59.000;lon=10.000, NSErrorFailingURLStringKey=https://api.met.no/weatherapi/locationforecast/1.9/?lat=59.000;lon=10.000})

我的代码是:

let urlo = URL(string: "https://api.met.no/weatherapi/locationforecast/1.9/?lat=59.000;lon=10.000")
var request = URLRequest(url: urlo!)
request.httpMethod = "GET"
let backgroundConfigObject = URLSessionConfiguration.background(withIdentifier: "MYUPDATING")
let backgroundSession = URLSession(configuration: backgroundConfigObject, delegate: self, delegateQueue: OperationQueue.main)
let taskTemps = backgroundSession.downloadTask(with: request)
taskTemps.resume()

谁能告诉我我做错了什么?

最佳答案

这是 XCode 上的一个错误。显然它在 XCode 8.3 中得到了修复。现在一切正常。

关于swift - 在 Swift 3 中使用 downloadTask 没有这样的文件或目录错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43078381/

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