Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
483 views
in Technique[技术] by (71.8m points)

javascript - 如何动态合并两个JavaScript对象的属性?(How can I merge properties of two JavaScript objects dynamically?)

I need to be able to merge two (very simple) JavaScript objects at runtime.

(我需要能够在运行时合并两个(非常简单的)JavaScript对象。)

For example I'd like to:

(例如,我想:)

var obj1 = { food: 'pizza', car: 'ford' }
var obj2 = { animal: 'dog' }

obj1.merge(obj2);

//obj1 now has three properties: food, car, and animal

Does anyone have a script for this or know of a built in way to do this?

(有没有人为此提供脚本或是否知道内置方法?)

I do not need recursion, and I do not need to merge functions, just methods on flat objects.

(我不需要递归,也不需要合并函数,只需合并平面对象上的方法即可。)

  ask by community wiki translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

ECMAScript 2018 Standard Method

(ECMAScript 2018标准方法)

You would use object spread :

(您将使用对象传播 :)

let merged = {...obj1, ...obj2};

/** There's no limit to the number of objects you can merge.
 *  Later properties overwrite earlier properties with the same name. */
const allRules = {...obj1, ...obj2, ...obj3};

Here is also the MDN documentation for this syntax, and if you're using babel- you'll need this plugin for it to work.

(这也是该语法的MDN文档 ,如果您使用的是babel,则需要插件才能正常工作。)

ECMAScript 2015 (ES6) Standard Method

(ECMAScript 2015(ES6)标准方法)

/* For the case in question, you would do: */
Object.assign(obj1, obj2);

/** There's no limit to the number of objects you can merge.
 *  All objects get merged into the first object. 
 *  Only the object in the first argument is mutated and returned.
 *  Later properties overwrite earlier properties with the same name. */
const allRules = Object.assign({}, obj1, obj2, obj3, etc);

(see MDN JavaScript Reference )

((请参阅MDN JavaScript参考 ))


Method for ES5 and Earlier

(ES5和更早版本的方法)

for (var attrname in obj2) { obj1[attrname] = obj2[attrname]; }

Note that this will simply add all attributes of obj2 to obj1 which might not be what you want if you still want to use the unmodified obj1 .

(请注意,这只会将obj2所有属性添加到obj1 ,如果您仍想使用未修改的obj1 ,则可能不是您想要的。)

If you're using a framework that craps all over your prototypes then you have to get fancier with checks like hasOwnProperty , but that code will work for 99% of cases.

(如果您使用的框架覆盖了您的所有原型,那么您必须对hasOwnProperty这样的检查变得hasOwnProperty ,但是该代码将在99%的情况下都能正常工作。)

Example function:

(示例功能:)

/**
 * Overwrites obj1's values with obj2's and adds obj2's if non existent in obj1
 * @param obj1
 * @param obj2
 * @returns obj3 a new object based on obj1 and obj2
 */
function merge_options(obj1,obj2){
    var obj3 = {};
    for (var attrname in obj1) { obj3[attrname] = obj1[attrname]; }
    for (var attrname in obj2) { obj3[attrname] = obj2[attrname]; }
    return obj3;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...