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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
| <!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <script src="vue2.5.16.js"></script> </head>
<body> <div id="app"> <div v-for="(value,key) in myData"> <p>{{key}}</p> <p>{{value.name}}</p> </div>
</div>
<script>
var dataList = [ { id: 11492948852, price: "49.90" }, { id: 11492948847, price: "39.90" } ];
var datas = {};
var dataList2 = { "11492948852": { "3": "1", "spec": "", "imagePath": "jfs/t3136/15/8874896477/153924/ee5100df/58cb7fa8N64311629.jpg", "color": "白色 ", "name": "【多色可选】丽装铺园纯色百搭简约打底T恤女 白色 XL", "size": "XL" }, "11492948847": { "3": "1", "spec": "", "imagePath": "jfs/t3109/27/9469817576/176241/aa424d04/58d4c849Ne22114ed.jpg", "color": "灰色 ", "name": "【多色可选】丽装铺园纯色百搭简约打底T恤女 灰色 S", "size": "S " }, "11325444606": { "3": "1", "spec": "", "imagePath": "jfs/t4447/354/3613344795/347891/4800da35/5901549fN468c7073.jpg", "color": "叶脉-五骨", "name": "迷你超轻小太阳伞雨伞小清新口袋伞 黑胶防晒五折两用遮阳伞 防紫外线折叠太阳伞 叶脉-五骨 五折伞", "size": "五折伞" }, "11492948848": { "3": "1", "spec": "", "imagePath": "jfs/t3076/90/7623078170/152165/9fe8c39d/58b94105N8ed8d2c0.jpg", "color": "橘色 ", "name": "【多色可选】丽装铺园纯色百搭简约打底T恤女 橘色 M", "size": "M" } }
dataList.forEach(function (item) { for (item2 in dataList2) { if (item.id == item2) { console.log('匹配成功'); datas[item.id] = { imagePath: dataList2[item2].imagePath, name: dataList2[item2].name } } } })
console.log(JSON.stringify(datas));
new Vue({ el: "#app", data: { myData: dataList2,
}, methods:{ clickMethod:function(){ } }
});
</script> </body>
</html>
|