安装新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)
}
}