我试图迁移一个扩展到Alamofire。请求,但得到错误Cannot call value of non-function type 'HTTPURLResponse?'
。
我知道编译器认为我引用的是成员响应而不是函数。
我已经用DataRequest.jsonResponseSerializer替换了Request.jsonResponseSerializer。
有人知道我错过了什么吗?
extension Alamofire.Request {
public func responseSwiftyJSON(_ queue: DispatchQueue? = nil, options: JSONSerialization.ReadingOptions = .allowFragments, completionHandler: @escaping (NSURLRequest, HTTPURLResponse?, SwiftyJSON.JSON, Error?) -> Void) -> Self {
return response(responseSerializer: Alamofire.DataRequest.jsonResponseSerializer(options: options)) { response in
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)) {
var responseJSON: JSON
if response.result.isFailure {
responseJSON = JSON.null
} else {
responseJSON = SwiftyJSON.JSON(response.result.value!)
}
dispatch_async(queue ?? dispatch_get_main_queue(), {
completionHandler(self.request!, self.response, responseJSON, response.result.error)
})
}
}
}
}
1条答案
按热度按时间siv3szwd1#
我不确定这是否与旧版本兼容,但我建议您将扩展重写为: