Alamofire:使用未解析的标识符'JSONEncoding'

时间:2017-02-14 18:28:10

标签: ios swift xcode cocoapods alamofire

安装新pod后再删除它,编译时出现以下错误:使用未解析的标识符'JSONEncoding'

我正在使用带有cocoapods(1.1.1)的Alamofire(4.3)和带有Swift 3的Xcode 8.2.1。

我已经尝试过以下操作但它无效:

  • 删除已获得的数据
  • 清理项目
  • 清理工作目录
  • 再次安装Alamofire

    Alamofire.request(url, method: .post, parameters: parameters, encoding: JSONEncoding.default).responseJSON { response in switch response.result { case .success(let value): let json = JSON(value) let token = json["value"].stringValue completion(true, token) case .failure(let error): print(error) completion(false, nil) } }

0 个答案:

没有答案