在TS中获取类构造函数的参数类型
使用 ConstructorParameters
实用程序类型获取 TypeScript 中类构造函数的参数类型,例如 type T = ConstructorParameters<typeof MyClass>
。 ConstructorParameters
类型返回一个元组类型,其中包含构造函数的参数类型。
// ✅ For constructors of classes
class Person {
constructor(public name: string, public age: number, public country: string) {
this.name = name;
this.age = age;
this.country = country;
}
}
// 👇️ type PersonParamsType = [name: string, age: number, country: string]
type PersonParamsType = ConstructorParameters<typeof Person>;
// 👇️ type First = string
type First = PersonParamsType[0];
// 👇️ type Second = number
type Second = PersonParamsType[1];
// ✅ For regular functions
function sum(a: number, b: number): number {
return a + b;
}
// 👇️ type SumParamsType = [a: number, b: number]
type SumParamsType = Parameters<typeof sum>;
我们使用 ConstructorParameters
实用程序类型来获取所有构造函数参数类型的元组类型。
如果我们需要访问特定参数的类型,例如 第一个,我们可以使用括号表示法并访问特定索引处的元素。
class Person {
constructor(public name: string, public age: number, public country: string) {
this.name = name;
this.age = age;
this.country = country;
}
}
// 👇️ type PersonParamsType = [name: string, age: number, country: string]
type PersonParamsType = ConstructorParameters<typeof Person>;
// 👇️ type First = string
type First = PersonParamsType[0];
// 👇️ type Second = number
type Second = PersonParamsType[1];
// 👇️ type Third = string
type Third = PersonParamsType[2];
元组的索引是从零开始的,就像数组一样。
请注意
,ConstructorParameters
实用程序类型将返回包含参数类型的元组,即使构造函数采用单个参数也是如此。
class Person {
name: string;
age: number;
country: string;
constructor({
name,
age,
country,
}: {
name: string;
age: number;
country: string;
}) {
this.name = name;
this.age = age;
this.country = country;
}
}
// 👇️ type PersonParamsType = [{
// name: string;
// age: number;
// country: string;
// }]
type PersonParamsType = ConstructorParameters<typeof Person>;
// 👇️ type First = {
// name: string;
// age: number;
// country: string;
// }
type First = PersonParamsType[0];
示例中的类采用单个参数 - 一个对象。 但是,ConstructorParameters
仍然返回一个包含该对象的元组。
如果需要访问对象的类型,则需要访问索引为 0 的元组元素。
如果我们需要获取常规函数参数的类型,则应改用 Parameters
实用程序类型。
function sum(a: number, b: number): number {
return a + b;
}
// 👇️ type SumParamsType = [a: number, b: number]
type SumParamsType = Parameters<typeof sum>;
// 👇️ type First = number
type First = SumParamsType[0];
// 👇️ type Second = number
type Second = SumParamsType[1];
Parameters
实用程序类型还返回一个包含所有函数参数类型的元组类型。
相关文章
在 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 中的类。