繁体   English   中英

iOS Swift 5 API Response不是JSON,它带有分号?

[英]iOS Swift 5 API Response isn't JSON, it has semicolons?

我正在尝试使用一个API响应,该响应在邮递员中很好地返回,但是当我快速打印时,它在行尾有分号

我尝试了各种选项以及各种更改请求和处理响应的方法,但均无济于事。 为什么分号在那里?

*******代码段******

let todosEndpoint: String = "https://url:3000/api/v1/somestring? 
query=$filter%3DUPC%20eq%20'somenumber'"
    guard let todosURL = URL(string: todosEndpoint) else {
        print("Error: cannot create URL")
        return
    }
    var todosUrlRequest = URLRequest(url: todosURL)
todosUrlRequest.httpMethod = "GET"

todosUrlRequest.setValue("application/json", forHTTPHeaderField: 
"Content-Type")

todosUrlRequest.setValue("Bearer "+token, forHTTPHeaderField: "Authorization")


let task = URLSession.shared.dataTask(with: todosUrlRequest) { (data, response, error) in
guard let dataResponse = data,
    error == nil else {
        print(error?.localizedDescription ?? "Response Error")
    return }

    do{
        let myJson = try JSONSerialization.jsonObject(with: data!) as? NSDictionary

        print(myJson!)

********结果*****

Desired Results:
{
"@odata.context": "https://api.url.com/v1/$metadata#Products",
"value": [
    {
        "ASIN": null,
        "Height": null,
        "Length": null,
        "Width": null,
        "Weight": null,
        "Cost": null,
        "Margin": null,
        "RetailPrice": null,
        "StartingPrice": null,
        "ReservePrice": null,
         }
    ]
}


Actual Results:
{
"@odata.context" = "https://api.url.com/v1/$metadata#Products";
value =     (
            {
        ASIN = "<null>";
        BlockComment = "<null>";
        BlockedDateUtc = "<null>";
        Brand = BAZZILL;
        BundleType = None;
        BuyItNowPrice = "0.99";
        CategoryCode = "<null>";
        CategoryPath = "<null>";
        Classification = "<null>";
        Condition = "<null>";
        Cost = "<null>";
        }
    );
}

如果您将JSON序列化为字典是因为您正在执行以下操作:

let myJson = try JSONSerialization.jsonObject(with: data!) as? NSDictionary
print(myJson!)

这意味着您可以像访问每个字段一样: let comment = myJson["BlockComment"]

但是,最好序列化为结构:

struct Product: Codable {
    let asin: String?
    let blockComment: String?
    let brand: String?
    let buyItNowPrice: Float?
    let cost: Float?

    enum CodingKeys: String, CodingKey {
        case asin = "ASIN"
        case blockComment = "BlockComment"
        case brand = "Brand"
        case buyItNowPrice = "BuyItNowPrice"
        case cost = "Cost"
    }
}

然后您将执行以下操作:

let product = try JSONDecoder().decode(Product.self)
print(product.cost)
print(product.brand)
//etc..

https://developer.apple.com/documentation/foundation/archives_and_serialization/encoding_and_decoding_custom_types

https://developer.apple.com/documentation/foundation/archives_and_serialization/using_json_with_custom_types

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM