我是一个快速和非常困惑的新手。如何编写一个通用的网络方法,用于在swift 4中编码struct类型的对象的post方法。我编写了一个方法,它接受类型为login的参数post,其中login是类型的结构可编码的。我需要将其推广而不是仅接受登录类型。
通常,您将首先将会话对象注入此服务类。您还提供了请求块和完成块。在您的情况下,您可能会考虑使用泛型。
func doURLsessions(completionHandler: @escaping (SomeType?)->()) {
let session = URLSession(configuration: URLSessionConfiguration.default)
if let timeurl = URL(string: "https://www.quandl.com/api/v3/datasets/NSE/NIFTY_50.json?api_key=xMH7BiBu6s24LHCizug3") {
(session.dataTask(with: timeurl, completionHandler: { (data, response, error) in
if let error = error {
print("Error: \(error)")
} else if let data = data {
let jsonDecoder = JSONDecoder()
let response = try? jsonDecoder.decode(YourCodableStruct.self, from: data)
if (response?.data != nil) {
//process data, call the completion handler.
}
}
})).resume()
}
对于每个端点,通常都有一个单独的函数,所有这些函数都在同一个类中。