我想阻止变量被更改。特别是Object的属性:
var foo = { bar: 'baz' };
// do something to foo to make it readonly
foo.bar = 'boing'; // should throw exception
可以这样做吗?
答案 0 :(得分:6)
你可以尝试
Object.defineProperty(foo, "bar", { writable: false });
后来的任务要么以静默方式失败,要么在严格模式下抛出异常(根据David Flanagan的“JavaScript:The Definitive Guide”)。
答案 1 :(得分:1)
使用功能:
var foo = function() {
var bar = 'baz';
return {
getBar: function() {
return bar;
}
}
}();
这样foo.bar是未定义的,你只能通过foo.getBar();
访问它答案 2 :(得分:0)
看看这个例子:
var Foo = function(){
this.var1 = "A"; // public
var var2 = "B"; // private
this.getVar2 = function(){ return var2; }
}
var foo = new Foo();
console.log(foo.var1); // will output A
console.log(foo.var2) // undefined
console.log(foo.getVar2()) // will output B