为什么通过 Object.defineProperty 添加的属性在 Javascript 中不可迭代
考虑这段代码:
var a = {
get aa() {
return 'aa';
}
};
Object.defineProperty(
a,
'bb',
{
get: function() {
return 'bb';
}
}
);
for(p in a) {
sys.puts(p + ': ' + a[p]);
}
输出是:
aa: aa
但是属性 bb 是完全可以访问和工作的。
为什么 'bb' 在 for..in 循环中不可见?
Consider this code:
var a = {
get aa() {
return 'aa';
}
};
Object.defineProperty(
a,
'bb',
{
get: function() {
return 'bb';
}
}
);
for(p in a) {
sys.puts(p + ': ' + a[p]);
}
The output is:
aa: aa
However property bb is perfectly accessible and working.
Why 'bb' is not visible in for..in loop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须将
enumerable
设置为true
。(您也可以给出
getOwnPropertyNames()
尝试一下,但我不确定跨浏览器的情况如何。)用这个 jsFiddle 尝试一下
You have to set
enumerable
totrue
.(You could also give
getOwnPropertyNames()
a try,but I'm not sure how cross browser that is.)Try it out with this jsFiddle
因为这种行为对于添加元属性可能是实用的。可以通过设置可枚举属性来更改行为。 https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects /对象/定义属性
Because this behaviour may be practical for adding in meta properties. The behaviour can be changed by setting the enumerable property. https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/defineProperty
对象属性的“元属性”的布尔字段都默认为
false
,包括enumerable
属性。The boolean fields of an object property's "meta-properties" all default to
false
, including theenumerable
property.