如何在 Alamofire 中使用 "responseDecodable" 方法?

How to use "responseDecodable" method in Alamofire?

我一直在尝试使用 Alamofire 的 "responseDecodable" 方法,但在使用时出现 "Generic parameter 'T' could not be inferred" 错误。

谁能指导我如何解决这个问题?

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

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