忽略打字稿中解构的多个结果

Ignore multiple results of a destructuring in typescript

我正在使用打字稿解构如下:

const props = new Map<User, [Name, Age, Location, Gender]>();
props.set(bill, [n, a, l, g]);

// ...

// Want to access location and gender of bill.
const [n, a, l, g] = props.get(bill);
console.log(l + g);

但这违反了noUnusedLocals编译器选项,所以我真正想要的是:

const [_, _, l, g] = props.get(bill);

但这违反了块范围变量的重新声明(两个变量名为 _)。

处理此问题的最佳方法是什么?也许解构在这里只是错误的选择。

根据 ES6 documentation 你可以这样做:

const [, , l, g] = props.get(bill);

您可以找到一个最小的工作示例 here