计算每个reduce操作的互动次数
P粉191323236
2023-08-14 17:21:30
<p>我有一个对象列表,如下:</p>
<pre class="brush:php;toolbar:false;">const usageCosts = {
224910186407: {
deviceId: "224910186407",
currency: "GBP",
yearlyUsage: 1480.81
},
224910464538: {
deviceId: "224910464538",
currency: "GBP",
yearlyUsage: 617.36
},
224910464577: {
deviceId: "224910464577",
currency: "EUR",
yearlyUsage: 522.3
}
}</pre>
<p>我正在按货币进行求和,如下:</p>
<pre class="brush:php;toolbar:false;">const totalYearlyCost = Object.values(usageCosts).reduce(
(acc: { [key: string]: any }, stat: any) => {
if (stat.currency && !acc[stat.currency]) {
acc[stat.currency] = 0
}
return {
...acc,
[stat.currency!]: acc[stat.currency!] + stat.yearlyUsage,
}
},
{},
)</pre>
<p>它返回一个对象,如下:</p>
<pre class="brush:php;toolbar:false;">{
EUR: 522.3
GBP: 2,098.17
}</pre>
<p>我还想返回每种货币的设备总数,类似于:</p>
<pre class="brush:php;toolbar:false;">{
EUR: 522.3 (1个设备)
GBP: 2,098.17 (2个设备)
}</pre>
<p>尝试添加另一个循环,但结果不如预期。</p>
这个任务分为两个部分会更容易。
首先,将其
reduce
为一个包含分组值的数组。然后循环遍历(也可以使用reduce)对象,并获取数组的总和,并将
${array.length} devices
添加到字符串中: