ts(TypeScript)常用语法(Omit、Pick、Partial、Required)

ts(TypeScript)常用语法

比如有一个联系人列表

export interface Contact{
  name: string; // 姓名
  phone?: string; // 手机号
  email: string; // 邮箱
  avatar: string; // 头像
  userid: string; // id
}

1.Omit去除类型中某些项(官方提供)

现在需要定义一个新的数据类型,新的联系人列表没有邮箱项
可以使用Omit,其源码如下

/**
 * Construct a type with the properties of T except for those in type K.
 */
type Omit = Pick>;

Omit会构造一个除类型K外具有T性质的类型
可以看出需Omit要两个参数,Omit
参数:第一个为继承的type类型,第二个为想要的key的字符串,多个字符串用|分开
使用也很简单:
去除单个,原始类型为联系人列表,新数据数据为没有邮箱项的联系人列表

export type OmitEmailContact = Omit;
OmitEmailContact{
  name: string;
  phone?: string; 
  avatar: string;
  userid: string;
}

去除多个,原始类型为联系人列表,新数据数据为没有邮箱项与头像的联系人列表

export type OmitEmailAvatarContact = Omit;
OmitEmailAvatarContact {
  name: string;
  phone?: string; 
  userid: string;
}

2.Pick选取类型中指定类型(官方提供)

现在联系人列表只要姓名电话即可
从T中选择一组属性,将它们在K中联合

type Pick = {
    [P in K]: T[P];
};

使用如下

export interface ContactPick extends Pick {}
ContactPick {
  name: string;
  phone?: string; 
}

3.给类型加上指定类型(自定义)

已经定义好了数据类型,现在需要给其中一些加上id这个类型

export type WithId = T & { id: P };

使用如下

export interface ContactWithId = WithId

4.Partial将类型中所有选项变为可选,即加上?(官方提供)

可以使用Partial,其源码如下

/**
 * Make all properties in T optional
 */
type Partial = {
    [P in keyof T]?: T[P];
};

使用如下

export interface PartialContact= Partial
PartialContact{
  name?: string; // 姓名
  phone?: string; // 手机号
  email?: string; // 邮箱
  avatar?: string; // 头像
  userid?: string; // id
}

5.Required将类型中所有选项变为必选,去除所有?(官方提供)

可以使用Required,其源码如下

/**
 * Make all properties in T required
 */
type Required = {
    [P in keyof T]-?: T[P];
};

使用如下

export interface RequiredContact= Required
RequiredContact{
  name: string; // 姓名
  phone: string; // 手机号
  email: string; // 邮箱
  avatar: string; // 头像
  userid: string; // id
}

未完待续

你可能感兴趣的:(前端,html,npm,c语言,前端)