TypeScript 中 Binding element 'X' implicitly has an 'any' type 错误
当我们没有在函数中设置对象参数的类型时,会出现“Binding element 'X' implicitly has an 'any' type”的错误。 要解决该错误,请确保明确键入函数的对象参数。
下面是错误如何在函数和类方法中发生的示例。
// 👇️ With Functions 👇️
// ⛔️ Error: Binding element 'id' implicitly
// has an 'any' type.ts(7031)
function getEmployee({ id, name }) {
return { id, name };
}
// 👇️ With Class methods 👇️
class Employee {
id: number;
name: string;
// ⛔️ Error: Binding element 'name' implicitly
// has an 'any' type.ts(7031)
constructor({ id, name }) {
this.id = id;
this.name = name;
}
}
问题是函数将对象作为参数,我们解构对象的属性,但不键入对象。
这意味着对象属性的类型被隐式设置为任何。
要解决该错误,请通过用冒号分隔对象参数及其类型来键入对象。
// 👇️ With Functions 👇️
function getEmployee({ id, name }: { id: number; name: string }) {
return { id, name };
}
// 👇️ With class methods 👇️
class Employee {
id: number;
name: string;
constructor({ id, name }: { id: number; name: string }) {
this.id = id;
this.name = name;
}
}
如果不想显式键入对象参数,但需要抑制错误,请使用 any
类型。
function getEmployee({ id, name }: any) {
return { id, name };
}
class Employee {
id: number;
name: string;
constructor({ id, name }: any) {
this.id = id;
this.name = name;
}
}
any
类型有效地关闭了类型检查,应该谨慎使用。
在 TypeScript 中键入对象参数时,请始终确保用冒号分隔参数定义和类型。 例如,这不是有效的语法。
// ⛔️ Binding element 'number' implicitly has an 'any' type.
function getEmployee({ id: number, name: string }) {
return { id, name };
}
我们在示例中所做的是解构 id 属性并将其命名为数字。
并从对象中解构 name
属性并将其命名为字符串。
相反,类型应该单独定义。
function getEmployee({ id, name }: { id: number; name: string }) {
return { id, name };
}
如果我们的函数定义太忙,请将对象类型提取到类型别名或接口中。
type Employee = {
id: number;
name: string;
tasks: string[];
};
function getEmployee({ id, name, tasks }: Employee) {
return { id, name, tasks };
}
这更容易阅读,尤其是当函数采用的对象包含许多属性时。
总结
当我们没有在函数中设置对象参数的类型时,会出现“Binding element 'X' implicitly has an 'any' type”的错误。 要解决该错误,请确保明确键入函数的对象参数。
相关文章
在 AngularJs 中设置 Select From Typescript 的默认选项值
发布时间:2023/04/14 浏览次数:78 分类:Angular
-
本教程提供了在 AngularJs 中从 TypeScript 中设置 HTML 标记选择的默认选项的解释性解决方案。
在 Angular 中使用 TypeScript 的 getElementById 替换
发布时间:2023/04/14 浏览次数:153 分类:Angular
-
本教程指南提供了有关使用 TypeScript 在 Angular 中替换 document.getElementById 的简要说明。这也提供了在 Angular 中 getElementById 的最佳方法。
在 TypeScript 中使用 try..catch..finally 处理异常
发布时间:2023/03/19 浏览次数:181 分类:TypeScript
-
本文详细介绍了如何在 TypeScript 中使用 try..catch..finally 进行异常处理,并附有示例。
在 TypeScript 中使用 declare 关键字
发布时间:2023/03/19 浏览次数:97 分类:TypeScript
-
本教程指南通过特定的实现和编码示例深入了解了 TypeScript 中 declare 关键字的用途。
在 TypeScript 中 get 和 set
发布时间:2023/03/19 浏览次数:172 分类:TypeScript
-
本篇文章演示了类的 get 和 set 属性以及如何在 TypeScript 中实现它。
在 TypeScript 中格式化日期和时间
发布时间:2023/03/19 浏览次数:161 分类:TypeScript
-
本教程介绍内置对象 Date() 并讨论在 Typescript 中获取、设置和格式化日期和时间的各种方法。
在 TypeScript 中返回一个 Promise
发布时间:2023/03/19 浏览次数:182 分类:TypeScript
-
本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。
在 TypeScript 中定义函数回调的类型
发布时间:2023/03/19 浏览次数:221 分类:TypeScript
-
本教程说明了在 TypeScript 中为函数回调定义类型的解决方案。为了程序员的方便和方便,实施了不同的编码实践指南。
在 TypeScript 中把 JSON 对象转换为一个类
发布时间:2023/03/19 浏览次数:110 分类:TypeScript
-
本教程演示了如何将 JSON 对象转换为 TypeScript 中的类。