我在swift4
上使用xcode9
开展了工作项目,但是当我下载并使用Xcode9.2
和Swift4.0.3
的项目时,我会使用我的工作代码;
调用可以抛出,但没有标记为'try'并且错误未处理错误
我正在使用,Alamofire
和SwiftyJSON
我的代码在下面
Alamofire.request(PostUrl, method: .post, parameters: parameters, encoding: URLEncoding.httpBody, headers: headers)
.responseData{ response in
if response.result.value != nil {
let json = JSON(data:response.result.value!)
let success = json["Result"]
if success == true {
print("ok")
}else{
}
}
}
错误行
让json = JSON(data:response.result.value!)