Alamofire 中的 responseJSON json 解析

问题描述

我正在获取 json 表单服务器。但是json快速解析nil。这是我的 json

{
    "out_code":"0","out_message":"0",}

我尝试使用 Alamofire 和 swiftjson 将下面的代码输出到 out_code

func getData(){
    
    Alamofire.request("url",method: .post,parameters: [
        "request_code":"11"
        
    ]).responseJSON{(responseData) -> Void in
        if((responseData.result.value != nil)){
            
            let swiftyJsonVar = JSON(responseData.result.value!)
            print("swiftyJsonVar==",swiftyJsonVar)
            
            if let v_id = swiftyJsonVar["out_code"] as? String {
                print("out_code----",v_id)
            }
            
        }
    }
}

swiftyJsonVar== 如下所示

{
    "out_code" : "0","out_message" : null
}

但我没有从 out_code 键中获取数据。请帮助我我的代码有什么问题...

解决方法

显然您正在使用 SwiftyJSON 库。

每种类型的铸造都是从库中处理的。尝试使用以下代码而不是强制转换为 String

if let v_id = swiftyJsonVar["out_code"].string {
    print("out_code----",v_id)
}