Alamofire.upload(media_data, to: WATSONCLOUD.API, method: .post, headers: header).responseJSON{
(response) in switch response.result{
case .Success(let JSON):
print("Success with JSON: \(JSON)")
callback(success: JSON as? NSDictionary, error: nil)
case .Failure(let error):
callback(success: nil, error: error)
print("Request failed with error: \(error)")
}
}
我收到此错误:
对成员 'upload(_:to:method:headers:)' 的模糊引用
而且我不知道如何解决这个尝试了不同的东西但没有成功。