Alamofire, Swift 2.0, SwiftyJSON:将响应体解析为JSON



我已经成功完成了对服务器的POST请求,我正在尝试解析响应JSON,但我没有成功。

        Alamofire.request(.POST, ServerConfig.ADD_SELLER_URL, parameters: sellerJSON, encoding: .JSON, headers: nil)
        .responseJSON(completionHandler: { responseRequest, responseResponse, responseResult in
            print(responseRequest!.URL)
            print(responseResponse)
            print(responseResult)
            let json = JSON(responseResponse!)
            print(json)
        })

我使用SwiftyJSON JSON解析。这是我的输出

Optional(http://stage-sellers.strawmine.com/api/v1/sellers/addSeller)
Optional(<NSHTTPURLResponse: 0x7f8f6df20530> { URL: http://stage-sellers.strawmine.com/api/v1/sellers/addSeller } { status code: 400, headers {
Connection = "keep-alive";
"Content-Type" = "application/json; charset=utf-8";
Date = "Mon, 12 Oct 2015 10:32:35 GMT";
Server = "nginx/1.4.6 (Ubuntu)";
"Transfer-Encoding" = Identity;
} })
SUCCESS
unknown

如您所见,只打印响应头。此外,如果我打印变量json,我会得到"未知"。如果我打印json。我得到一个空字符串。我想从主体中获取JSON数据。请帮助!提前感谢!

您需要使用responseResult.value!来获取json数据。

let json = JSON(responseResult.value!)
print(json)

相关内容

  • 没有找到相关文章

最新更新