Home > Article > Web Front-end > Example code sharing of saving the returned object to a two-dimensional array
var result={"a":{"x":5,"y":0,"z":0},"b":{"x":0,"y":0,"z":3},"c":{"x":5,"y":0,"z":0},"d":{"x":0,"y":0,"z":4},"e":{"x":0,"y":3,"z":0} };var arr=[];var obj={ keyArr:['dec'], one:['x'], two:['y'], three:['z'] };for(var key in result){ obj.keyArr.push(key);var thisResult=result[key]; obj.one.push(thisResult.x); obj.two.push(thisResult.y); obj.three.push(thisResult.z); }//obj.one.unshift("x");//obj.two.unshift("y");//obj.three.unshift("z");for(var i in obj){ arr.push(obj[i]); } console.log(arr);
The above is the detailed content of Example code sharing of saving the returned object to a two-dimensional array. For more information, please follow other related articles on the PHP Chinese website!