简体   繁体   中英

Remove one level of nested arrays from JS data structure

How can I convert the following data structure:

var data = [ [ { time: 1, speed : 20 } ] ]; 

to

var data = [ { time: 1, speed: 54 } ];

I just want to remove the array.

As the data is an array, you just want to select the first element of the outer array

so the solution would be

var data = [[{time:1,speed:20}]]; // Or whatever the data is
data = data[0];

Or if you're accessing the data via another object

var data = yourObject[0];

尝试这个 :

JSON.stringify(data).substr(1,JSON.stringify(data).length-2);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM