简体   繁体   English

将对象转换为二维数组,其中包含数组和对象(Javascript)

[英]Convert an object to bidimensional Array which has arrays and objects in between (Javascript)

I have a DB with some info in and a function that accesses that info. 我有一个包含一些信息的数据库,以及一个访问该信息的函数。 However, using an old DB I have returned a perfect bidimensional array, so I can use it with no problems at all. 但是,使用旧的数据库,我返回了一个完美的二维数组,因此我可以毫无问题地使用它。 Now, with the new DB info, for some reason I am receiving some data in the right way and some other data as an object: 现在,有了新的数据库信息,由于某种原因,我将以正确的方式接收一些数据,并以对象的形式接收其他数据:

World goes from 0 to 149 and each of them do the same, so I have 世界从0变到149,每个都做同样的事情,所以我有

0  0 [1,1,1]
0  1 [1,1,1] etc

but in positions 2 and 47, instead of an array of arrays, I have an object: 但在位置2和47,我有一个对象:

2: {0 [1,1,1] ...

The whole idea is to put everything into a bidimensional array: 整个想法是将所有内容放入二维数组中:

[[1,1,1],[1,1,1],...],[[1,1,1],[1,1,1],...]

I have tried a few things like Array.from but it seems like since it has a mix between it won´t be converted. 我已经尝试了一些类似Array.from的方法,但是由于它之间存在混合,因此似乎无法转换。

What should I do to convert it the right way or to access only those wich are objects, convert them, then add every element in its right position to a bidimensional array? 我应该怎么做才能以正确的方式对其进行转换,或者仅访问那些对象,将其转换,然后将每个位置正确的元素添加到二维数组中?

(I tried to explain it the best way I can... let me know if there is any other explanation you may need to help me out overhere) (我试图以最好的方式来解释它……让我知道您是否需要其他帮助来帮助我)

Thanks! 谢谢! ps: The info comes from an API ps:该信息来自API

This is what I get: 这是我得到的:

world 世界

Object { 0=[150],  1=[150],  2={...},  más...}

0 0

[1, 1, 1, 147 más...]

1 1个

[1, 1, 1, 147 más...]

2 2

Object { 0=1,  1=1,  2=1,  más...}

3 3

[1, 1, 1, 147 más...]

4 4

[1, 1, 1, 147 más...]

5 5

[1, 1, 1, 147 más...]

6 6

[1, 1, 1, 147 más...]

7 7

[1, 1, 1, 147 más...]

8 8

[1, 1, 1, 147 más...]

9 9

[1, 1, 1, 147 más...]

10 10

[1, 1, 1, 147 más...]

This is what I need: 这就是我需要的:

world 世界

[[1, 1, 1, 147 más...], [1, 1, 1, 147 más...], [1, 1, 1, 147 más...], 147 más...]

0 0

[1, 1, 1, 147 más...]

1 1个

[1, 1, 1, 147 más...]

2 2

[1, 1, 1, 147 más...]

3 3

[1, 1, 1, 147 más...]

4 4

[1, 1, 1, 147 más...]

5 5

[1, 1, 1, 147 más...]

6 6

[1, 1, 1, 147 más...]

7 7

[1, 1, 1, 147 más...]

8 8

[1, 1, 1, 147 más...]

9 9

[1, 1, 1, 147 más...]

10 10

[1, 1, 1, 147 más...]

Ok guys, 好了朋友们,

I am not sure if this is the best way to do it, but here is how I came up with the desired result: 我不确定这是否是最好的方法,但是这是我想到的结果:

var testing = [[]];
var test = [];
var numberOfItems = 0;
for(var item in configs.world){
    numberOfItems++;
}
testing.splice(0, testing.length);
for(var i = 0; i < numberOfItems; i++){        
    console.log(i);
    if(Array.isArray(configs.world[i])){
        testing.push(configs.world[i]);
    } else {            
        test.splice(0,test.length);
        for(var key in configs.world[i]){
            var value = configs.world[i][key];
            test.push(value);
        }
        testing.push(test);                 
    }
}
world = testing;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 JavaScript:将带有数组的对象解构为带有对象的数组 - JavaScript: Deconstructing an object with arrays, to an array that has objects 使用JavaScript中的对象填充二维数组时遇到问题 - trouble filling bidimensional Array with objects in JavaScript JavaScript:将包含字符串的数组数组转换为包含对象的数组数组 - JavaScript: convert an array of arrays which contain strings into an array of arrays which contain objects 将对象数组转换为数组对象 - Convert array of objects to an object of arrays Javascript:如何使用已排序的唯一数组将对象数组转换为对象? - Javascript: How convert array of objects to object with sorted unique arrays? 如何在Javascript中将对象数组转换为关联数组的对象 - How to Convert an Array of Objects into an Object of Associative Arrays in Javascript 如何将包含多个数组的对象转换为javascript中的对象数组? - How to convert the object which contains multiple array into an array of objects in javascript? 在 JavaScript 中选择并填充二维数组中的对象 - select and fill an object in a bidimensional array in JavaScript 如何转换数组中的对象,该数组已在javaScript中的嵌套对象中 - how to convert objects in array which is already in a nested object in javaScript javascript,将对象数组垂直转换为arrays数组 - javascript, convert an array of objects to an array of arrays vertically
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM