Swift 4.0.3,Alamofire,Swiftyjson JSON'尝试'并且错误未处理错误

时间:2017-12-15 08:39:20

标签: json alamofire swift4 swifty-json

我在swift4上使用xcode9开展了工作项目,但是当我下载并使用Xcode9.2Swift4.0.3的项目时,我会使用我的工作代码;

  

调用可以抛出,但没有标记为'try'并且错误未处理错误

我正在使用,AlamofireSwiftyJSON

我的代码在下面

 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!)

0 个答案:

没有答案