Thursday 2 August 2018

extjs - Parse JSON in Ext JS 4 or JavaScript

I have this type of JSON:




{"value":[{"idProductCategoryAttributeValue":43,"value":"7","sortOrder":0}]}


I want the individual parameters values like. How do I parse this JSON string in Ext JS 4 or in simple JavaScript?

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...