Alamofire 奇怪的 JSON 前缀 - Swift 2.0

Alamofire strange JSON prefix - Swift 2.0

我正在尝试从 API 获取 JSON 文件,但是 Alamofire(分支:Swift 2.0)returns 文件的前缀很奇怪(Alamofire.Result.Success).如果这是一个愚蠢的问题,我很抱歉,但我是 alamofire 的新手。我怎样才能得到一个可以与 SwiftyJSON 一起使用的 NORMAL 文件?

我的代码:

func getText (image: UIImage){

    let url = "https://api.idolondemand.com/1/api/sync/ocrdocument/v1"
    let apiKey = "xxx-xxx-xxx-xxx-xxx"
    let mode = "document_photo"
    let imageData = UIImagePNGRepresentation(image)

    Alamofire.upload(
        .POST,
        url,
        multipartFormData: { multipartFormData in
            multipartFormData.appendBodyPart(
                data: apiKey.dataUsingEncoding(NSUTF8StringEncoding)!,
                name: "apikey"
            )
            multipartFormData.appendBodyPart(
                data: mode.dataUsingEncoding(NSUTF8StringEncoding)!,
                name: "mode"
            )
            multipartFormData.appendBodyPart(data: imageData!, name: "file",fileName: "image.png", mimeType: "image/png")
        },
        encodingCompletion: { encodingResult in
            switch encodingResult {
            case .Success(let upload, _, _):
                upload.responseJSON  { _, _, json in

                        print(JSON)

                }
            case .Failure(let encodingError):
                print(encodingError)
            }
        }
    )
}

打印输出(JSON):

Alamofire.Result<Swift.AnyObject>.Success([text_block: (
        {
        height = 127;
        left = 0;
        text = "\U2022 response()\n\U2022 responseString(encoding: NSStringEncoding)\n\U2022 responseJSON(options: NSJS0NReading0ptions)\n\U2022 responsePropertyList(options: NSPropertyListRead0ptions)";
        top = 0;
        width = 487;
    }
)])

在您调用 upload.responseJSON(_:completionHandler:) 的闭包参数中,您指定名称 json 的参数作为 Alamofire Result 枚举传递(参见 source).

您应该能够通过访问其 value 属性 来获取该枚举的关联数据,如下所示:

upload.responseJSON  { _, _, json in
  print(json.value!)
}

此外,如果有机会,请查看 SwiftyJSON(在 Swift 中处理 JSON 的流行库)。