gpt4 book ai didi

javascript - 类成员变量是动态的。取决于 typescript 中 map 的键

转载 作者:行者123 更新时间:2023-11-28 03:04:20 24 4
gpt4 key购买 nike

我有一张像 typescript 一样的 map myMap : Map = new Map();

myMap 有一些键和值

我正在迭代 map ,如下所示

for(let [key, value] of this.myMap) {
///some code which can create a class whose member variable will be the key of the map and the values of the member variables will be the values of the keys
}

例如,如果 map 的键是==>苹果、芒果等 如果对应的值为1、2然后在迭代 map 时动态创建

myClass {
apple = 1;
mango = 2;
}

最佳答案

你能试试这个吗

let myClass = {};
for (const [key, value] of this.myMap.entries()) {
myClass = {
...myClass,
[key]: value,
}
}

关于javascript - 类成员变量是动态的。取决于 typescript 中 map 的键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60735384/

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