gpt4 book ai didi

javascript - javascript中的索引属性

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

(我不敢相信这是不可能的,但我可能没有使用正确的搜索词)

我有一个这样的“类”:

function MyClass() = {
this.getItem = function(key) {
// return whatever;
};
this.setItem = function(key, val) {
// set whatever
};
};

是否可以通过(我认为所谓的)索引属性获取/设置?

var test = new MyClass();
test["key"] = "value";
alert(test["key"]);
[ ] 功能)

最佳答案

在 JavaScript 中,您没有那种方式的自动访问器。至少我没见过。

你可以使用

var test = new MyClass();
test.key = "value";
alert(test.key);

alert(test["key"]);

但这可能不是您想要的...

关于javascript - javascript中的索引属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5310529/

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