gpt4 book ai didi

JavaScript Json 值基于 equals 条件附加

转载 作者:行者123 更新时间:2023-11-28 06:06:10 25 4
gpt4 key购买 nike

我是 JavaScript 新手。我有两个 json 数据列表。我需要相互迭代,如果键和值彼此匹配,那么我必须将新的键值对附加到第一个列表中。请参阅以下示例了解更多详细信息:

Example:
//array 1
var customers = [{
CustomerName: 'Customer1',
},
{
CustomerName: 'Customer2',
}];
// array 2
var locations= [{
CustomerName: 'Customer1',
latitude: 555555;
},
{
CustomerName: 'Customer2',
latitude: 666666;
},
{
CustomerName: 'Customer3',
latitude: 777777;
}];
// Iteration of the arrays
for(var i=0; i<customers.length; i++){
for(var j=0;j<locations.length;j++) {
if(customers[i].CustomerName ==locations[j].CustomerName) {
// Here I want to add an element key value pair into existing array if condition get satisfied
customers[i].push(locations[j].lat);
alert(customers[i].lat);
}
}
}

最佳答案

你可以使用

customers[i].yourKey = yourValue;

as customer[i] 将返回您的客户对象,只需将其视为对象即可。 JavaScript 对它的用户来说就是这么好。

关于JavaScript Json 值基于 equals 条件附加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36841226/

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