在swift 4中调用Encoding类型的网络

问题描述 投票:0回答:1

我是一个快速和非常困惑的新手。如何编写一个通用的网络方法,用于在swift 4中编码struct类型的对象的post方法。我编写了一个方法,它接受类型为login的参数post,其中login是类型的结构可编码的。我需要将其推广而不是仅接受登录类型。

ios swift networking
1个回答
0
投票

通常,您将首先将会话对象注入此服务类。您还提供了请求块和完成块。在您的情况下,您可能会考虑使用泛型。

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()
}

对于每个端点,通常都有一个单独的函数,所有这些函数都在同一个类中。

© www.soinside.com 2019 - 2024. All rights reserved.