本文介绍了是否有与goog.object.extend相当的纯功能?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
根据:
但这不是一种功能性的方法,功能性方法更好。 Closure是否为此提供了更现代的东西?
But this is not a functional approach and for many contexts a functional approach is better. Does Closure offer something more modern for this?
eg
goog.object.extend(a, b);
变为
becomes
a = goog.object.extend(a, b);
推荐答案
您可以使用空对象创建新对象字面意思是用你想复制的对象进行扩展 - 合并:
You can create a new object by using an empty object literal to be extended with the objects that you want to copy-merge:
var x = {};
goog.object.extend(x, a, b);
a = x;
如果要扩展非简单对象,可能需要使用 Object .create(Object.getPrototypeOf(a))
。
If you are extending non-plain objects, you might need to use Object.create(Object.getPrototypeOf(a))
.
这篇关于是否有与goog.object.extend相当的纯功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!