如何在Alamofire中使用“ responseDecodable”方法?

时间:2019-12-15 09:10:53

标签: ios swift alamofire swift5

我一直在尝试使用Alamofire的“ responseDecodable”方法,但使用该方法时出现“无法推断通用参数'T'”错误。 Alamofire

有人可以指导我解决此问题吗?

1 个答案:

答案 0 :(得分:0)

如您在documentation中所读,使用responseDecodable很简单:

AF.request(...).responseDecodable(of: ResponseType.self) { response in 
    ...
}