是否可以为Object.defineProperty setter函数提供多个参数?
E.G。
var Obj = function() {
var obj = {};
var _joe = 17;
Object.defineProperty(obj, "joe", {
get: function() { return _joe; },
set: function(newJoe, y) {
if (y) _joe = newJoe;
}
});
return obj;
}
我没有从语法中得到任何错误,但我无法弄清楚如何调用setter函数并传递两个参数。
答案 0 :(得分:7)
是否可以为Object.defineProperty setter函数提供多个参数?
是的,但是无法调用它们(Object.getOwnPropertyDescriptor(obj, "joe").set(null, false)
除外)。使用分配给属性的一个值(obj.joe = "doe";
)调用setter - 您不能一次分配多个值。
如果你真的需要它们(无论出于何种原因),最好使用基本的setter方法(obj.setJoe(null, false)
)。
答案 1 :(得分:0)
我在setter方法上遇到了类似的困境,所以我以对象参数(ES6语法)结束:
set size(param) {
this.width = param.width;
this.height = param.height;
}
我用它像:
this.size = {width: 800, height: 600};
答案 2 :(得分:-1)
只是一个有趣的想法。
var Joe = (function() {
// constructor
var JoeCtor = function() {
if (!(this instanceof Joe)){
throw new Error('Error: Use the `new` keyword when implementing a constructor function');
}
var _age = 17;
// getter / setter for age
Object.defineProperty(this, "age", {
get: function() { return _age; },
set: function(joeObj) {
if (joeObj.assert) {
_age = joeObj.value;
}
}
});
};
// static
JoeCtor.ageUpdateRequest = function(canSet, newAge){
return { assert: canSet, value: newAge }
};
return JoeCtor;
})();
myJoe = new Joe();
myJoe.age = Joe.ageUpdateRequest(true, 18);