在JavaScript中合并两个关联数组的最佳/标准方法是什么?每个人都只是通过滚动自己的for
循环来做到这一点吗?
答案 0 :(得分:193)
使用jquery,您可以致电$.extend
var obj1 = {a: 1, b: 2};
var obj2 = {a: 4, c: 110};
var obj3 = $.extend(obj1, obj2);
obj1 == obj3 == {a: 4, b: 2, c: 110} // Pseudo JS
(关联数组是js中的对象)
看这里:http://api.jquery.com/jQuery.extend/
编辑像rymo建议的那样,最好这样做:
obj3 = $.extend({}, obj1, obj2);
obj3 == {a: 4, b: 2, c: 110}
因为这里obj1(和obj2)保持不变。
edit2: 2018年的方式是通过Object.assign
:
var obj3 = Object.assign({}, obj1, obj2);
obj3 === {a: 4, b: 2, c: 110} // Pseudo JS
如果使用ES6,可以使用Spread Operator:
来实现const obj3 = { ...obj1, ...obj2 };
答案 1 :(得分:56)
现在在2016年我会说最好的/标准的方式是 Object.assign()
纯Javascript。不需要jQuery。
obj1 = {a: 1, b: 2};
obj2 = {a: 4, c: 110};
obj3 = Object.assign({},obj1, obj2); // Object {a: 4, b: 2, c: 110}
此处提供更多信息,示例和填充:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
答案 2 :(得分:48)
这就是Prototype的作用:
Object.extend = function(destination, source) {
for (var property in source) {
if (source.hasOwnProperty(property)) {
destination[property] = source[property];
}
}
return destination;
};
称为,例如:
var arr1 = { robert: "bobby", john: "jack" };
var arr2 = { elizabeth: "liz", jennifer: "jen" };
var shortnames = Object.extend(arr1,arr2);
编辑:添加了hasOwnProperty()检查,正如bucabay在评论中正确指出
答案 3 :(得分:22)
保持简单......
function mergeArray(array1,array2) {
for(item in array1) {
array2[item] = array1[item];
}
return array2;
}
答案 4 :(得分:14)
Underscore也有一个扩展方法:
将源对象中的所有属性复制到 目标对象。它是有序的,所以最后一个来源会覆盖 以前参数中同名的属性。
_.extend(destination, *sources)
_.extend({name : 'moe'}, {age : 50});
=> {name : 'moe', age : 50}
答案 5 :(得分:7)
在dojo中,2个对象/数组“合并”将为lang.mixin(destination, source)
- 您还可以将多个来源混合到一个目的地等 - 有关详细信息,请参阅the mixin function's reference。
答案 6 :(得分:6)
如果名称相同但值不是?
,是否要覆盖属性?您是否想永久更改其中一个原始对象
或者您想要返回一个新的合并对象吗?
function mergedObject(obj1, obj2, force){
for(var p in obj1) this[p]= obj1[p];
for(var p in obj2){
if(obj2.hasOwnProperty(p)){
if(force || this[p]=== undefined) this[p]= obj2[p];
else{
n= 2;
while(this[p+n]!== undefined)++n;
this[p+n]= obj2[p];
}
}
}
}
答案 7 :(得分:6)
function extend(objects) {
var args
, first = Array.prototype.slice.call(arguments, 0, 1)[0]
, second;
if (arguments.length > 1) {
second = Array.prototype.splice.call(arguments, 1, 1)[0];
for (var key in second) {
first[key] = second[key];
}
args = Array.prototype.slice.call(arguments, 0);
return extend.apply(this, args);
}
return first;
}
...
var briansDirections = {
step1: 'Remove pastry from wrapper.',
step2: 'Place pastry toaster.',
step3: 'Remove pastry from toaster and enjoy.',
};
extend(briansDirections, { step1: 'Toast Poptarts' }, { step2: 'Go ahead, toast \'em' }, { step3: 'Hey, are you sill reading this???' });
...
这只是递归地扩展对象的 splat 。另请注意,此递归函数是TCO( Tail-Call Optimized ),因为它的返回是对自身的最后一次调用。
此外,您可能需要目标属性。在这种情况下,您可能希望根据id
,quantity
或其他属性压缩对象。这种方法可能有一本关于它的小书,需要对象并置,并且可能变得非常复杂。我已经为此编写了一个小型库,可根据要求提供。
希望这有帮助!
答案 8 :(得分:4)
答案 9 :(得分:1)
Yahoo UI(YUI)也有一个辅助功能:
http://developer.yahoo.com/yui/examples/yahoo/yahoo_merge.html
YAHOO.namespace('example');
YAHOO.example.set1 = { foo : "foo" };
YAHOO.example.set2 = { foo : "BAR", bar : "bar" };
YAHOO.example.set3 = { foo : "FOO", baz : "BAZ" };
var Ye = YAHOO.example;
var merged = YAHOO.lang.merge(Ye.set1, Ye.set2, Ye.set3);
答案 10 :(得分:0)
我需要一个深层对象合并。所以其他所有答案对我都没有帮助。 _.extend和jQuery.extend做得很好,除非你像我一样有一个递归数组。但它并没有那么糟糕,你可以在五分钟内编程:
var deep_merge = function (arr1, arr2) {
jQuery.each(arr2, function (index, element) {
if (typeof arr1[index] === "object" && typeof element === "object") {
arr1[index] = deep_merge(arr1[index], element);
} else if (typeof arr1[index] === "array" && typeof element === "array") {
arr1[index] = arr1[index].concat(element);
} else {
arr1[index] = element;
}
});
return arr1;
}
答案 11 :(得分:0)
jquery有一个深度拷贝的布尔值。你可以这样做:
MergeRecursive = function(arr1, arr2){
$.extend(true, arr1, arr2);
return arr1;
};
此外,您可以编辑此功能以支持n阵列合并。
ArrayMergeRecursive = function(){
if(arguments.length < 2){
throw new Error("ArrayMergeRecursive: Please enter two or more objects to merge!");
}
var arr1=arguments[0];
for(var i=0; i<=arguments.length; i++ ){
$.extend(true, arr1, arguments[i]);
}
return arr1;
};
所以现在你可以做到
var arr1 = {'color': {'mycolor': 'red'}, 3: 5},
arr2 = {4: 10, 'color': {'favorite': 'green', 0: 'blue'}},
arr3 = ['Peter','Jhon','Demosthenes'],
results = ArrayMergeRecursive(arr1, arr2, arr3); // (arr1, arr2 ... arrN)
console.log("Result is:", results);
答案 12 :(得分:0)
要在jQuery中合并数组,有什么关于$ .merge?
var merged = $.merge([{id:3, value:'foo3'}], [{id:1, value:'foo1'}, {id:2, value:'foo2'}]);
merged[0].id == 3;
merged[0].value == 'foo3';
merged[1].id == 1;
merged[1].value == 'foo1';
merged[2].id == 2;
merged[2].value == 'foo2';
答案 13 :(得分:0)
var addProps = function (original, props) {
if(!props) {
return original;
}
if (Array.isArray(original)) {
original.map(function (e) {
return addProps(e, props)
});
return original;
}
if (!original) {
original = {};
}
for (var property in props) {
if (props.hasOwnProperty(property)) {
original[property] = props[property];
}
}
return original;
};
测试
console.log(addProps([{a: 2}, {z: 'ciao'}], {timestamp: 13}));
console.log(addProps({single: true}, {timestamp: 13}));
console.log(addProps({}, {timestamp: 13}));
console.log(addProps(null, {timestamp: 13}));
[ { a: 2, timestamp: 13 }, { z: 'ciao', timestamp: 13 } ]
{ single: true, timestamp: 13 }
{ timestamp: 13 }
{ timestamp: 13 }
答案 14 :(得分:0)
这是最好的解决方案。
obj1.unshift.apply( obj1, obj2 );
此外,obj1
可以在循环内生长而没有任何问题。 (假设obj2
是动态的)
答案 15 :(得分:0)