gpt4 book ai didi

javascript - 如何从数组中提取对象以自动将它们放入变量中?

转载 作者:行者123 更新时间:2023-12-04 08:53:39 25 4
gpt4 key购买 nike

如何从数组中提取对象并将它们放入根据对象对应的数组索引创建的变量中
我尝试过这个 :

response.forEach((el, i, )=>{

let nameProduct[i] = ` the name of product : ${response[i].nameProduct}`;
console.log(nameProduct[i]);
});

但这是一个失败

最佳答案

您可以将值映射到全局(或至少在 map 之外)变量。

const nameProduct = response.map(({ nameProduct }) => `the name of product: ${nameProduct}`);

关于javascript - 如何从数组中提取对象以自动将它们放入变量中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63966441/

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