我正在尝试创建自己的DecodeHelper类。
这是我挣扎的地方:
final class DecodeHelper {
static func myDecodeMethod<T>(data: Data, completion : (Result<T, ErrorResult>) -> Void) {
do {
let decoder = JSONDecoder()
let decodedData = try decoder.decode(Forecast.self, from: data)
completion(Result.success(decodedData))
} catch {
completion(Result.failure(.decoder(string: "Error while decoding json data")))
}
}
}
此方法将在从后端接收数据后在交换机中调用(仅限成功案例(。
但是我不知道如何以通用方式对其进行编码。我应该将预期的类型作为参数传递吗(此处为 Forecast.self(?
这不是编译:
Cannot convert value of type 'Result<Forecast, _>' to expected argument type 'Result<_, ErrorResult>'
欢迎任何建议。
你已经很接近了,你只需要添加T
是Decodable
的要求......
final class DecodeHelper {
static func myDecodeMethod<T: Decodable>(data: Data, completion : (Result<T, ErrorResult>) -> Void) {
do {
let decoder = JSONDecoder()
let decodedData = try decoder.decode(T.self, from: data)
completion(Result.success(decodedData))
} catch {
completion(Result.failure(.decoder(string: "Error while decoding json data")))
}
}
}