gpt4 book ai didi

typescript - 忽略 typescript 中解构的多个结果

转载 作者:搜寻专家 更新时间:2023-10-30 21:10:44 25 4
gpt4 key购买 nike

我正在使用 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);

但这违反了 block 作用域变量的重新声明(两个名为 _ 的变量)。

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

最佳答案

根据 ES6 documentation你可以这样做:

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

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

关于typescript - 忽略 typescript 中解构的多个结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41061741/

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