Invalid top level type in JSON write '

I pass some api parameter to make the add to cart function. But when I pass the parameter, it shows a failure. Invalid top-level type in JSON write'I know that there is a problem in my passing parameter. Please help me! How to do it. Please help me!

This is the json format of the parameter I'm going through !!:

{
    "cartType" : "1",
    "cartDetails" : {
        "customerID" : "u",
        "cartAmount" : "6999",  
        "cartShipping" : "1",
        "cartTax1" : "69",
        "cartTax2" : "",
        "cartTax3" : "",
        "cartCouponCode" : "",
        "cartCouponAmount" : "",
        "cartPaymentMethod" : "",
        "cartProductItems" : {
            "productID" : "9",
            "productPrice" : "6999",
            "productQuantity" : "1"
        }
    }
}

My updated solution:

func addtocartapicalling ()
{
    let headers = [
        "cache-control": "no-cache",
        "postman-token": "4c933910-0da0-b199-257b-28fb0b5a89ec"
    ]

    let jsonObj:Dictionary<String, Any> = [
        "cartType" : "1",
        "cartDetails" : [
            "customerID" : "sathish",
            "cartAmount" : "6999",
            "cartShipping" : "1",
            "cartTax1" : "69",
            "cartTax2" : "",
            "cartTax3" : "",
            "cartCouponCode" : "",
            "cartCouponAmount" : "",
            "cartPaymentMethod" : "",
            "cartProductItems" : [
                "productID" : "9",
                "productPrice" : "6999",
                "productQuantity" : "1"
            ]
        ]
    ]

    if (!JSONSerialization.isValidJSONObject(jsonObj)) {
        print("is not a valid json object")
        return
    }

    if let postData = try? JSONSerialization.data(withJSONObject: jsonObj, options: JSONSerialization.WritingOptions.prettyPrinted) {
        let request = NSMutableURLRequest(url: NSURL(string: "http://expapi.php")! as URL,
                                          cachePolicy: .useProtocolCachePolicy,timeoutInterval: 10.0)
        request.httpMethod = "POST"
        request.allHTTPHeaderFields = headers
        request.httpBody = postData

        let session = URLSession.shared
        let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
            if (error != nil) {
                ///print(error)
            } else {

                DispatchQueue.main.async(execute: {

                    if let json = (try? JSONSerialization.jsonObject(with: data!, options: [])) as? Dictionary<String,AnyObject>
                    {
                        let status = json["status"] as? Int;
                        if(status == 1)
                        {
                            print("SUCCESS....")
                            if (json["CartID"] as? Int?) != nil
                            {
                                DispatchQueue.main.async(execute: {

                                    print("INSIDE CATEGORIES")
                                    self.addtocartdata.append(Addtocartmodel(json:CartID))


                                })
                            }

                        }

                    }
                })

            }
        })

        dataTask.resume()
    }
}

last problem in adding values:

enter image description here

In my model data class, it looks like this:

class Addtocartmodel

{
 var cartid : Int?
init(json:NSDictionary)
    {
         self.cartid = json["CartID"] as? Int
}
}
+4
source share
1 answer

Your json has the wrong format. Use a dictionary that is much clearer than json in swift, and use JSONSerialization to convert the dictionary to a json string.

:

func addtocartapicalling ()
{
    let headers = [
        "cache-control": "no-cache",
        "postman-token": "4c933910-0da0-b199-257b-28fb0b5a89ec"
    ]

    let jsonObj:Dictionary<String, Any> = [
        "cartType" : "1",
        "cartDetails" : [
            "customerID" : "sathish",
            "cartAmount" : "6999",
            "cartShipping" : "1",
            "cartTax1" : "69",
            "cartTax2" : "",
            "cartTax3" : "",
            "cartCouponCode" : "",
            "cartCouponAmount" : "",
            "cartPaymentMethod" : "",
            "cartProductItems" : [
                "productID" : "9",
                "productPrice" : "6999",
                "productQuantity" : "1"
            ]
        ]
    ]

    if (!JSONSerialization.isValidJSONObject(jsonObj)) {
        print("is not a valid json object")
        return
    }

    if let postData = try? JSONSerialization.data(withJSONObject: jsonObj, options: JSONSerialization.WritingOptions.prettyPrinted) {
        let request = NSMutableURLRequest(url: NSURL(string: "http://expapi.php")! as URL,
                                          cachePolicy: .useProtocolCachePolicy,timeoutInterval: 10.0)
        request.httpMethod = "POST"
        request.allHTTPHeaderFields = headers
        request.httpBody = postData

        let session = URLSession.shared
        let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
            if (error != nil) {
                print(error)
            } else {

                DispatchQueue.main.async(execute: {

                    if let json = (try? JSONSerialization.jsonObject(with: data!, options: [])) as? Dictionary<String,AnyObject>
                    {
                        let status = json["status"] as? Int;
                        if(status == 1)
                        {
                            print("SUCCESS....")
                            print(json)
                            if let CartID = json["CartID"] as? Int {
                                DispatchQueue.main.async(execute: {

                                    print("INSIDE CATEGORIES")
                                    print("CartID:\(CartID)")
                                    self.addtocartdata.append(Addtocartmodel(json:json))
                                })
                            }
                        }
                    }
                })
            }
        })

        dataTask.resume()
    }
}
+2

Source: https://habr.com/ru/post/1658581/


All Articles