我正在尝试创建一个对象。但我不明白为什么我的属性 getter setter 不能简单地调用this.bar
. 因此,我的 foo 对象似乎最终有两个属性。
这是正确的还是我:
- 使用defineProperties错误
- 错过了重点
foo
使用bar
属性创建
var foo = function ()
{
Object.defineProperties(this, {
bar : {
get : function () {return this.barVal},
set : function(value) { this.barVal = value},
enumerable: true,
configurable: true
}
})
};
var o = new foo();
o.bar = "Hello";
console.log(JSON.stringify(o));
//output {"bar":"Hello","barVal":"Hello"}