美文网首页
Alamofire 使用 post 上传 json 给 服务器

Alamofire 使用 post 上传 json 给 服务器

作者: 文瑶906 | 来源:发表于2018-07-03 17:07 被阅读0次

Alamofire 使用的是 4.7.2
Swift 4

     Alamofire.request(strUrl, method: httpMethod, parameters: parameters, encoding: JSONEncoding.default , headers: nil)
            .validate().responseJSON  { response in
                print("response===",response)
        }

如果要是 出现 "Extra argument 'method' in call"

有可能是 encoding 的错误或者是 strURL 的错误。反正不一定是 method 参数的错误

相关文章

网友评论

      本文标题:Alamofire 使用 post 上传 json 给 服务器

      本文链接:https://www.haomeiwen.com/subject/sgdjuftx.html