gpt4 book ai didi

javascript - 多个对象属性 JavaScript

转载 作者:行者123 更新时间:2023-11-30 08:02:46 25 4
gpt4 key购买 nike

在 JavaScript 中获得了这段代码片段,它将多个属性定义到一个对象中。

var book = {};

Object.defineProperties(book , {
_year: {
value: 2004
},

edition: {
value: 1
},

year: {
get: function() {
return this._year;
},

set: function(newValue) {
if (newValue > 2004) {
this._year = newValue;
this.edition += newValue - 2004;
}
}
}
});

book.year = 2005;
alert(book.edition);

所以包含该代码的书声称 alert(book.edition); 将显示 2。相反,它显示 1。似乎它从不执行访问器属性代码 (year: get: set:) 的部分。有谁知道为什么会这样吗?

最佳答案

edition 已被定义为不可写属性 -- writable 描述符属性尚未指定,默认情况下为 false .因此 this.edition += ... 默默地失败了。这同样适用于 _year 属性。

_year: {
writable: true,
value: 2004
},
edition: {
writable: true,
value: 1
},

Fiddle

注意:分配给不可写的属性会在 strict mode 中引发错误, 因此您可以添加 'use strict'; pragma 以更轻松地发现这些错误。

引用:

关于javascript - 多个对象属性 JavaScript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23976569/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com