I want to transform a JSON formatted output to another. How I can do this?
Example: Old JSON
JavaScript
x
12
12
1
"data":
2
[
3
{
4
"id" : "e49e183e-9325-4e62-8eda-7e63fb7cdbbd",
5
"name" : "test"
6
},
7
{
8
"id" : "ac310894-d808-447b-a189-d07edb7f6dd7",
9
"name" : "test2"
10
}
11
]
12
New JSON which I want without braces only like this with bracket
JavaScript
1
10
10
1
"aaData":
2
[
3
[
4
"e49e183e-9325-4e62-8eda-7e63fb7cdbbd","test"
5
],
6
[
7
"ac310894-d808-447b-a189-d07edb7f6dd7","test2"
8
]
9
]
10
Advertisement
Answer
You could just loop through the items and push them into a new object:
JavaScript
1
8
1
var len = old.data.length,
2
newData = {aaData:[]},
3
i;
4
5
for ( i=0; i < len; i+=1 ) {
6
newData.aaData.push( [ old.data[ i ].id, old.data[ i ].name] );
7
}
8
example: https://jsfiddle.net/q2Jzb/1/
You are presumably passing these to DataTables (as you use the name aaData), note that DataTables takes an object as the configuration, it’s not the same as JSON.