forked from 471314748/xiaotexiao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1.html
49 lines (43 loc) · 754 Bytes
/
1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
<script>
var obj1 = [
{
id: 4399,
name: '黄忠'
}, {
id: 4379,
name: '吕布'
}
]
var obj2 = [
{
id: 4399,
wq: '弓箭',
zq: '黄骠马'
}, {
id: 4379,
wq: '方天画戟',
zq: '赤兔马'
}
]
function hb(arr1, arr2) {
return arr1.map(item => {
let arr= arr2.find(item1=>{
return item.id==item1.id
})
return{...item,...arr}
})
}
console.log(obj1,obj2);
var arr1 = hb(obj1, obj2)
console.log(arr1);
</script>
</html>