在swift4中使用未解析的标识符'json'

问题描述 投票:0回答:1

我有错误Use of unresolved identifier 'json'。刚才我正在使用swift4。我只想获取json数据并根据返回参数返回3种类型的msg。

快速消息(已获得此优惠券)表示“已经保存”。

第二个消息(添加到我的优惠券)意味着“它现在已保存”。

第三个消息(不能添加到我的优惠券)意味着“应用程序无法保存”。>这是因为缺少注册用户参数。

如何在swift4中解决Use of unresolved identifier 'json'问题?

@objc func saveCouponToMyCoupon() {

    let params = [
        "merchant_id" : ApiService.sharedInstance.merchant_id,
        "coupon_id" : self.coupon?.coupon_id
        ] as! [String : String]

    Alamofire.request(APIURL.k_Coupon_Publish, method: .post, parameters: params, encoding: URLEncoding(destination: .httpBody), headers: ApiService.sharedInstance.header)
        .validate(statusCode: 200..<500)
        .responseJSON { response in
            switch response.result {
            case .success(let data):
                print(response)
                print(response.result)

                if json["returnCode"] == "E70" {
                    ErrorMessage.sharedIntance.show(title: "このクーポンは取得済です。", message: "")
                }else {
                    ErrorMessage.sharedIntance.show(title: "マイクーポンに追加されました", message: "")
                }

            case .failure(let error):
                debugPrint(error)
                ErrorMessage.sharedIntance.show(title: "マイクーポンに追加できませんでした", message: "")
                break
            }
    }
}
json swift swift4
1个回答
1
投票

来自Alamofire—Response Handling

if let json = response.result.value {
    print("JSON: \(json)") // serialized json response
}

在您的情况下,switch response.result … case .success(let data):是获取response.result.value数据的另一种方式。

但是,您将变量命名为data而不是json。如果你更改名称它应该工作。

Alamofire.request(APIURL.k_Coupon_Publish, method: .post, parameters: params, encoding: URLEncoding(destination: .httpBody), headers: ApiService.sharedInstance.header)
    .validate(statusCode: 200..<500)
    .responseJSON { response in
        switch response.result {
        case .success(let json): // <-- use json instead data.
            print(response)
            print(response.result)

           // Cast json to a string/any dictionary.
           // Get the return code and cast it as a string.
           // Finally, compare the return code to "E70".
           if let dict = json as? [String: Any], let code = dict["returnCode"] as? String, code == "E70" {
                ErrorMessage.sharedIntance.show(title: "このクーポンは取得済です。", message: "")
            }else {
                ErrorMessage.sharedIntance.show(title: "マイクーポンに追加されました", message: "")
            }

        case .failure(let error):
            debugPrint(error)
            ErrorMessage.sharedIntance.show(title: "マイクーポンに追加できませんでした", message: "")
            break
        }
}
© www.soinside.com 2019 - 2024. All rights reserved.