gpt4 book ai didi

javascript - 在 reduce 函数中使用变量

转载 作者:行者123 更新时间:2023-12-01 09:12:34 25 4
gpt4 key购买 nike

感觉我在这里遗漏了一些明显的东西。我正在使用像这样的 reduce 函数

const obj = this.data.reduce((ac,{Category, Count}) => (ac[Category] = Count,ac),{});

但是,我现在需要 Category 和 Count 是动态的,使用变量。因此,我已经完成了

const cat = this.format.header[0];
const count = this.format.header[1];
const obj = this.data.reduce((ac,{cat, count}) => (ac[cat] = count,ac),{});

虽然这似乎没有使用我的变量。我也试过在其中使用它,但这也不起作用。

如何在 reduce 中使用这些变量?

谢谢

最佳答案

你不能以这种方式使用解构来接近你想要的东西:

this.data.reduce((ac,{cat, count}) => (ac[cat] = count,ac),{});

这将尝试访问属于数组的对象的属性 catcount,而不是保存变量的对象。但是,您可以这样做:

const cat = this.format.header[0];
const count = this.format.header[1];
const obj = this.data.reduce((ac, o) => (ac[o[cat]] = o[count], ac), {});

关于javascript - 在 reduce 函数中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56508109/

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