如何在此上使用数组解构。我收到了一个警告。
Use array destructuring. [prefer-destructuring]
const block = Object.entries(products).reduce((acc, item) => {
acc[item[0]] = item[1];
return acc;
}, {}
);
答案 0 :(得分:1)
将参数列表中的item
分解为[key, val]
:
const block = Object.entries(products).reduce((acc, [key, val]) => {
acc[key] = val;
return acc;
}, {});