gpt4 book ai didi

javascript - Angularjs 连接两个对象

转载 作者:行者123 更新时间:2023-12-01 04:00:27 25 4
gpt4 key购买 nike

我有两个对象:

obj1 = { 'id1': 1, 'name1': 'anyone1', 'birth1': 22, 'year1': 1993 };

obj2 = { 'id2': 1, 'name2': 'anyone', 'birth2': 22, 'year2': 1993 };

我想创建一个像这样的数组:

ARRAY = {

obj1 = {
'id1': 1, 'name1': 'anyone1', 'birth1': 22, 'year1': 1993
},

obj2 = {
'id2': 1, 'name2': 'anyone', 'birth2': 22, 'year2': 1993
}

}

我想将其命名为“ARRAY.obj1.id1

我该怎么做?

最佳答案

解决方案是创建一个带有两个的新对象:

obj1 = { 'id1': 1, 'name1': 'anyone1', 'birth1': 22, 'year1': 1993 };

obj2 = { 'id2': 1, 'name2': 'anyone', 'birth2': 22, 'year2': 1993 };
var obj={};
obj["obj1"]=obj1;
obj["obj2"]=obj2;
console.log(obj);
console.log(obj.obj1.id1);

关于javascript - Angularjs 连接两个对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42235978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com