swift – ‘Method’对于此上下文中的类型查找是不明确的,Alamofire中的错误

前端之家收集整理的这篇文章主要介绍了swift – ‘Method’对于此上下文中的类型查找是不明确的,Alamofire中的错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用Alamofire的网络处理在swift和运行一个奇怪的错误。看起来我们不能通过Method枚举作为参数。 [错误是在方法参数]

private func apiRequest(method: Method,url: String,apiData: [String : AnyObject],completion:(finished: Bool,response: AnyObject?) ->Void) {

    Alamofire.request(method,url,parameters: apiData).responseJSON{ response in
        if let JSON = response.result.value {
            completion(finished: true,response: JSON)
        } else {
            completion(finished: false,response:nil)
        }
    }
}
您必须指定从哪个模块查找对象类型。 调用Alamofire.Method
原文链接:https://www.f2er.com/swift/320821.html

猜你在找的Swift相关文章