当前位置:  开发笔记 > 编程语言 > 正文

澄清TypeScript的noUnusedParameters编译器选项

如何解决《澄清TypeScript的noUnusedParameters编译器选项》经验,为你挑选了1个好方法。

我试图在GitHub上输入任何内容之前确定这是否是一个错误.

noUnusedParameters启用,打字稿编译器将错误的东西,如:

const foo = ['one', 'two', 'three'];
foo.forEach((item: string, index: number) => {
  // do something just with index, ignoring item
});

error TS6133: 'item' is declared but never used.不过,虽然它没有具体使用时,它被用在了第二个参数的forEach迭代函数的索引.

我错过了什么吗?



1> Nitzan Tomer..:

没有必要提交问题,因为已存在一个问题:使用--noUnusedParameters我如何跳过未使用的参数.

tl; dr:
您可以通过在下划线前面添加不感兴趣的参数来跳过此错误:

const foo = ['one', 'two', 'three'];
foo.forEach((_item: string, index: number) => {
    console.log(index);
});

编译好.

推荐阅读
ifx0448363
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有