我正在尝试使用defineProperty使属性不会出现在...循环中,但它不起作用。这段代码是否正确?
function Item() {
this.enumerable = "enum";
this.nonEnum = "noEnum";
}
Object.defineProperty(Item, "nonEnum", { enumerable: false });
var test = new Item();
for (var tmp in test){
console.log(tmp);
}
答案 0 :(得分:18)
Item
没有名为nonEnum
(check it out)的媒体资源。它是一个(构造函数)函数,它将创建一个具有名为nonEnum
的属性的对象。
所以这个会起作用:
var test = new Item();
Object.defineProperty(test, "nonEnum", { enumerable: false });
您也可以这样写这个函数:
function Item() {
this.enumerable = "enum";
Object.defineProperty(this, "nonEnum", {
enumerable: false,
value: 'noEnum'
});
}