Alamofire对base64字符串的响应

时间:2017-09-04 05:58:42

标签: ios iphone alamofire nsurlsession alamofireimage

我正在使用Alamofire进行网络请求。除了一个问题,它的工作正常。

manager!.request(mutableURLRequest).responseJSON { (response) in
  switch response.result {
        case .Success:
            if let value = response.result.value {
                 print("JSON: \(value)") //**problem**
             }
        case .Failure(let error):
            print(error)
         }

}

服务器响应格式为:

"result" : [
    {
      "rec_name" : "1.jpg",
      "data": {
                "base64": "/9j/4AAQSkZ",
                "__class__": "bytes"
              },
      "id" : 9,
      "name" : "1.jpg"
    },
    {
      "rec_name" : "2.jpg",
      "data": {
                "base64": "/9j/4AAQSkZ",
                "__class__": "bytes"
              },
      "id" : 10,
      "name" : "2.jpg"
    }
  ],
  "id" : 0
}

但我得到如下:data(base64 String)为null

"result" : [
    {
      "rec_name" : "1.jpg",
      "data" : null,
      "id" : 9,
      "name" : "1.jpg"
    },
    {
      "rec_name" : "2.jpg",
      "data" : null,
      "id" : 10,
      "name" : "2.jpg"
    }
  ],
  "id" : 0
}

我是否错过了base64字符串的内容? 我认为它在一个月之前有效,但现在我遇到了问题。

如果我通过POSTMAN提出同样的请求,那么它可以正常工作!

谢谢,

1 个答案:

答案 0 :(得分:1)

我可以向你建议图书馆SwiftyJSON。这个库允许您轻松地在Swift中解析JSON。此外,还有一个扩展AlamofireSwiftyJSON,它将Alamofire和SwiftyJSON联合起来。以下是您的请求示例:

if let urlToTest = URL.init(string: "your_URL") {

    Alamofire.request(urlToTest,
                      method: .get,
                      parameters: nil,
                      encoding: JSONEncoding.default,
                      headers: nil)
    .responseSwiftyJSON(completionHandler: { (response:DataResponse<JSON>) in

        let jsonResult = response.result
        if let jsonResultValue = jsonResult.value {

            if let resultArray = jsonResultValue["result"].array {

                if resultArray.count > 0 {

                    if let itemData = resultArray[0]["data"].dictionary {

                        if let itemDataBase64 = itemData["base64"]?.string {

                            print("Base 64 field value \(itemDataBase64)")
                        }
                    }
                }
            }
        }
    })
}