I am trying to display some data coming from php ajax
How can I display json formatted data receiving from ajax,
Below is my formatted json
{
"c2array":true,
"size":[1,6,4],
"data":[
[[4837],["test2"],[2],["1"]],
[
[700],["test6"],[6],["5"]],
[
[600],["test1"],[1],["4"]],
[
[30],["test1"],[1],["3"]],
[
[10],["test1"],[1],["1"]],
[
[10],["test1"],[1],["2"]]]
}
I am trying to store data inside array,but i am not sure it is coming inside or not.
Trying to print out data using array.at(0,0,0) also tried with str(array.at(0,0,0))
Please
Please
Please suggest,how to manage this one