5

Object.defineProperty setter 函数是否可以有多个参数?

例如

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 函数并将两个参数传递给它。

4

3 回答 3

9

Object.defineProperty setter 函数是否可以有多个参数?

是的,但不能调用它们(除了Object.getOwnPropertyDescriptor(obj, "joe").set(null, false))。使用分配给属性( )的一个值调用 setter obj.joe = "doe";- 您不能一次分配多个值。

如果您真的需要它们(无论出于何种原因),最好使用基本的 setter 方法 ( obj.setJoe(null, false))。

于 2013-09-10T19:26:45.800 回答
4

我在使用 setter 方法时遇到了类似的困境,所以我以对象结束param

  set size(param) {
    this.width = param.width;
    this.height = param.height;
  }

我像这样使用它:

this.size = {width: 800, height: 600};
于 2016-04-30T19:16:39.073 回答
-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);
于 2015-06-23T09:13:06.977 回答