我有这个功能:
static func connect(url : String)->JSON<---------{
Alamofire.request(url).responseJSON { response in
switch response.result {
case .success(let value):
let json = JSON(value)
print(json)
//return json<---------
case .failure(let error):
print(error)
}
}
错误:
Unexpected non-void return value in void function
我正在使用Alamofire + SwiftyJson。 如何正确编写此函子?