错误TS7006:参数“ i”隐式具有“ any”类型。在reactJs文件中

时间:2019-12-30 14:52:30

标签: reactjs typescript

如何在ReactJs中编写以下代码-typescrpit文件(index.tsx)

props.emplList.findIndex(i => i.manager === false);

我已经尝试过

props.emplList.findIndex((i:any) => {i.manager === false});

但是它将返回-1 ,这是不正确的。期望值为> 0

如何编写与tsx文件兼容的这一行? 如何解决此错误参数'i'隐式具有'any'类型将得到解决?

0 个答案:

没有答案