Parse Json in javascript or jquery

Possible duplicate:
how to parse json in javascript

I need to parse this JSON in JavaScript or jQuery. Please help me in getting the product list in the below JSON.

To get a list of products

{
    "main": {
        "ProductsData": {
            "Product": {
                "AdjustmentTypeID": "0",
                "BrandID": "4",
                "BrandName": "Joseph Joseph",
                "ChildrenGenerated": "False",
                "Cost": "8.50",
                "Description": "<span style=\"line-height: 120%; \">The ingenious dual-chamber design of this measuring jug eliminates the need for separate measuring spoons, cups and jugs. Use the small chamber to accurately measure liquids from as little as a single teaspoon (5ml), and then for greater volumes (up to 550ml) simply turn the jug 180&ordm; and use the larger chamber. Made from SAN material. Heat resistant to 90&deg;C \\/ 190&deg;F.<\\/span>\\u000d\\u000a<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:\\u000d\\u000a120%;mso-layout-grid-align:none;text-autospace:none;vertical-align:middle\"><br \\/>\\u000d\\u000aDesign registered<span lang=\"EN-US\"><o:p><\\/o:p><\\/span><\\/p>\\u000d\\u000a<p class=\"BasicParagraph\"><span style=\"font-size:11.0pt;line-height:120%;\\u000d\\u000afont-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:windowtext\"><br \\/>\\u000d\\u000aDimensions&nbsp;&nbsp; 7x 7 x 15cm<o:p><\\/o:p><\\/span><\\/p>",
                "DownloadFile": "",
                "InternalCode": "502842009381 0",
                "IsProductActive": "False",
                "ManufacturerID": "11",
                "ManufacturerName": "Joseph Joseph",
                "OptionMatchGroupID": "",
                "ParentProduct": "",
                "ProductID": "80",
                "ProductName": "2-in-1 Measuring Jug",
                "ProductTypeDescription": "Compound Product",
                "ProductTypeID": "8",
                "SiteID": "57",
                "StockLevel": "",
                "SupplierID": "3",
                "SupplierName": "Joseph Joseph",
                "UseStockControl": "False",
                "VatRate": "20"
            }
        }
    }
}
+3
source share
7 answers

Use the method parseJSONin jQuery.

Example:

var obj = $.parseJSON(yourJsonString);
alert(obj.main.ProductsData.Product.Cost);
+2
source

Reading JSON from a file:

myobject = $.parseJSON("myfile.json")

Or read the JSON from the line:

myobject = $.parseJSON(jsonString)

Now get the data you need:

//Loops  into every Product in ProductsData:
$(myobject.main.ProductsData.Product).each(function(index, element){
    //Do something with Product variable such as below
    alert(element.BrandName + ' ' + element.SupplierName);
}

Be sure to check your JSON details with http://jsonlint.com/

+2
source

JSON.parse ( MDN)

yourObj = JSON.parse( jsonstring );

JSON , , ,

yourObj['main']['ProductsData']['ProductName']

"2-in-1 Measuring Jug"

.

+1

jquery $.parseJSON(jsonString), json

jsonString ,

jsonObj = $.parseJSON(jsonString);

jsonObj.main.ProductsData.Product

0

javascript: JSON.parse(yourjavascriptobjecttoparse);

var productx = yourjavascriptobjecttoparse['main']['ProductsData']['Product'] .

0

var object = $.parseJSON(jsonString);

, JavaScript- JavaScript:

object.main.ProductsData.Product.BrandName     // Joseph Joseph
0

JSON- jQuery, jquery-json.

JSON. :

var myObject = { property1: "value1", property2: "value2" };

// Converts myObject to JSON
var serialized = $.toJSON(myObject);

// Parses generated JSON into a new object
var deserialized = $.evalJSON(serialized);
0

All Articles