admin管理员组文章数量:1340287
Lazy-me is wondering if there a better way to copy the properties in one object (source) over to another object (destination) only if the properties exist in the latter? It does not necessarily have to be using Underscore.
For example,
_.mixin({
assign: function (o, destination, source) {
for (var property in source) {
if (destination.hasOwnProperty(property)) {
destination[property] = source[property];
}
}
return destination;
}
});
console.log( _().assign({ a: 1, b: 2, d: 3 }, { a: 4, c: 5 }) ) // a: 4, b: 2, d: 3
Lazy-me is wondering if there a better way to copy the properties in one object (source) over to another object (destination) only if the properties exist in the latter? It does not necessarily have to be using Underscore.
For example,
_.mixin({
assign: function (o, destination, source) {
for (var property in source) {
if (destination.hasOwnProperty(property)) {
destination[property] = source[property];
}
}
return destination;
}
});
console.log( _().assign({ a: 1, b: 2, d: 3 }, { a: 4, c: 5 }) ) // a: 4, b: 2, d: 3
Share
Improve this question
asked Aug 15, 2016 at 10:31
MikeyMikey
6,7664 gold badges24 silver badges50 bronze badges
1
- Possible duplicate of How to duplicate object properties in another object? – Michael Freidgeim Commented Oct 3, 2019 at 7:22
2 Answers
Reset to default 6Use Object.assign(obj1, obj2);
(if the properties exist in the latter) which is native in ES6 (no underscore.js is required).
The Object.assign() method is used to copy the values of all enumerable own properties from one or more source objects to a target object. It will return the target object. More info here.
Example:
var o1 = { a: 1 };
var o2 = { b: 2 };
var o3 = { c: 3 };
var obj = Object.assign(o1, o2, o3);
console.log(obj);
Alternatively use undescore.js
_.extend(destination, *sources)
or
_.extendOwn(destination, *sources)
Detailated information can be found here: http://underscorejs/#extend
One lazy option is:
_.extend(a, _.pick(b, _.keys(a)));
_.pick
filters the source object by using the .keys
of the destination object and the result is used for extending the destination object.
If you don't want to modify the original objects just pass an empty object to the _.extend
function.
_.extend({}, a, _.pick(b, _.keys(a)));
本文标签: javascriptCopying properties from one object to another with a conditionStack Overflow
版权声明:本文标题:javascript - Copying properties from one object to another with a condition - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743626940a2512443.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论