在最新版本(4.0.0)中调用Alamofire请求方法时出错.
语法是:
Alamofire.request(urlString,method: .post,parameters: requestParams,encoding: .JSON,headers: [:])
requestParam的类型是[String:Any]
我遇到了这个问题,我必须使用JSONEncoding.default而不是.JSON,所以新的语法是
原文链接:https://www.f2er.com/swift/320026.htmlAlamofire.request(urlString,encoding: JSONEncoding.default,headers: [:])