迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

在TS中获取类构造函数的参数类型

作者:迹忆客 最近更新:2022/12/29 浏览次数:

使用 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 实用程序类型还返回一个包含所有函数参数类型的元组类型。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 TypeScript 中返回一个 Promise

发布时间:2023/03/19 浏览次数:182 分类:TypeScript

本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便