我想知道如何通过 clojure 在 javascript 中创建私有变量。但是在使用Object.create时仍然会克隆它们。
var point = {};
(function(){
var x, y;
x = 0;
y = 0;
Object.defineProperties(point, {
"x": {
set: function (value) {
x = value;
},
get: function() {
return x;
}
},
"y": {
set: function (value) {
y = value;
},
get: function () {
return y;
}
}
});
}());
var p1 = Object.create(point);
p1.x = 100;
console.log(p1.x); // = 100
var p2 = Object.create(point);
p2.x = 200;
console.log(p2.x); //= 200
console.log(p1.x); //= 200
我从http://ejohn.org/blog/ecmascript-5-objects-and-properties/获得了这种技术,但它有这个限制,即所有对象的闭包变量都是相同的。我知道 javascript 上的这种行为是应该的,但我怎样才能创建真正的私有变量?