javascript - Json associative array accessing in jQuery -


I am getting feedback in the format below for every product and there are several products in the same call. I'm trying to access via jQuery, but I'm not able to access it.

  product data ['someid'] = {"product Jason data"}  

I'm using jQuery in the syntax below but the data can not be found Please suggest please.

  Warning (product data ['something']];  

It is not going to look like a JSON format.

JSON is a key: value pair format;

Then your product data should be in the format below:

  ProductData = {'someid': "Product Jason Data"}  

Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -