作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个 json 数组:
1)
[
{
"userId": 9
},
{
"userId": 14
}
]
2)
[{"role": "1", "group": "3"}, {"role": "1", "group": "2"}]
我想合并两个数组,如下所示:可以用javascript解决吗?
[
{"userId":9,"role":"1","group":"2"},
{"userId":14,"role":"1","group":"2"}
{"userId":9,"role":"1","group":"3"},
{"userId":14,"role":"1","group":"3"}
]
我尝试使用 Let 但是我找不到操作切换子数组的方法:
let arr1 =
[{ "userId": 9 }, { "userId": 14 }]
let arr2 = [{"role": "1","group": "3"}, {"role": "1","group": "2" }]
let result = arr1.map(o => Object.assign(o, ...arr2));
console.log(result);
return result;
结果是这样的:
[{"userId":9,"role":"1","group":"2"},{"userId":14,"role":"1","group":"2"}]
提前致谢。
最佳答案
您可以将.map()
与Object.assign()
结合使用:
let arr1 = [{"userId": 9}, {"userId": 14}],
arr2 = [{"rid": 1}, {"mid": 201}];
let result = arr1.map(o => Object.assign(o, ...arr2));
console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }
关于javascript - 如何在Javascript中将多个json数组合并为一个数组swift子数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52504759/
我是一名优秀的程序员,十分优秀!