JS [ES5] How to assign objects with setters and getters?(JS [ES5] 如何用 setter 和 getter 分配对象?)
问题描述
obj1 = Object.create({}, { property: { enumerable: true, value: 42 } })
> obj1.property = 56
> 56
> obj1.property
> 42
使用 use strict 会出错.
我想组合多个对象:使用 jQuery.extend():
I want to combine multiple objects: with jQuery.extend():
new_obj = $.extend(true, objN, obj1)
使用 ES6 Object.assign:
with ES6 Object.assign:
new_obj = Object.assign({}, objN, obj1)
在任何情况下,getter 都会变成常规属性,因此可以更改.如何避免?
In any case, the getter turns into a regular property, and therefore it can be changed. How to avoid it?
推荐答案
您可以编写自己的函数来复制属性:
You can write your own function that also copies over property attributes:
function extend(target, ...sources) {
for (let source of sources)
for (let key of Object.keys(source))
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
return target;
}
但请注意,Object.assign
不这样做是有充分理由的,如果 getter 和 setter 是闭包,它可能会产生奇怪的效果.
But notice there is good reason why Object.assign
does not, it could have weird effects if getters and setters are closures.
这篇关于JS [ES5] 如何用 setter 和 getter 分配对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JS [ES5] 如何用 setter 和 getter 分配对象?
基础教程推荐
- 响应更改 div 大小保持纵横比 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 动态更新多个选择框 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01