实用的 Typescript 技巧

在大型项目中 typescript 的必要性越来越高,它能够提前在编译期避免许多 bug,很好的代码提示,所有依赖人为约束的方案都很难避免由于人的疏忽导致的bug,Ts能较好的从代码习惯上约束团队开发习惯,降低代码的维护成本,学习 ts 已是势在必行。

以下是工作中总结到的比较实用的 typescript 技巧。

keyof

keyofObject.keys 略有相似,只不过 keyofinterface 的键。

interface Point {
  x: number;
  y: number;
}

// 相当于:
// type keys = "x" | "y"
type keys = keyof Point;
1
2
3
4
5
6
7
8

假设有一个 object 如下所示,我们需要使用 typescript 实现一个 get 函数来获取它的属性值

const data = {
  a: 3,
  hello: 'world'
}

function get(o: object, name: string) {
  return o[name]
}
1
2
3
4
5
6
7
8

我们刚开始可能会这么写,不过它有很多缺点

  1. 无法确认返回类型:这将损失 ts 最大的类型校验功能
  2. 无法对 key 做约束:可能会犯拼写错误的问题

这时可以使用 keyof 来加强 get 函数的类型功能,有兴趣的同学可以看看 _.get 的 type 标记以及实现

function get<T extends object, K extends keyof T>(o: T, name: K): T[K] {
  return o[name]
}
1
2
3

对于 keyof,另一个好用的小技巧是 keyof any,请看以下示例

// 以下两者等效,但适用 keyof 更加简短
type PropertyName = keyof any;
type PropertyName = string | number | symbol;
1
2
3

Required & Partial & Pick

既然了解了 keyof,可以使用它对属性做一些扩展, 如实现 PartialPickPick 一般用在 _.pick

type Partial<T> = {
  [P in keyof T]?: T[P];
};

type Required<T> = {
  [P in keyof T]-?: T[P];
};

type Pick<T, K extends keyof T> = {
  [P in K]: T[P];
};

interface User {
  id: number;
  age: number;
  name: string;
};

// 相当于: type PartialUser = { id?: number; age?: number; name?: string; }
type PartialUser = Partial<User>

// 相当于: type PickUser = { id: number; age: number; }
type PickUser = Pick<User, 'id' | 'age'>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

PickRequiredPartial 这几个类型已内置在 Typescript 中原生实现

Condition Type

类似于 js 中的 ?: 运算符,可以使用它扩展一些基本类型

type isTrue<T> = T extends true ? true : false

// 相当于 type t = false
type t = isTrue<number>

// 相当于 type t = false
type t = isTrue<false>
1
2
3
4
5
6
7

never & Exclude & Extract & Omit

官方文档对 never 的描述如下

the never type represents the type of values that never occur.

结合 neverconditional type 可以推出很多有意思而且实用的类型,比如 ExcludeExtract

type Exclude<T, U> = T extends U ? never : T;

// 相当于: type A = 'a'
type A = Exclude<'x' | 'a', 'x'>
type A = Exclude<'x' | 'a', 'x' | 'y' | 'z'>

// 与 Exclude 实现刚好相反,Exclude 取差集,而 Extract 取交集
type Extract<T, U> = T extends U ? T : never;

// 相当于: type A = 'x'
type A = Exclude<'x' | 'a', 'x'>
1
2
3
4
5
6
7
8
9
10
11

结合 Exclude 推出 Omit 的写法

type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>;

interface User {
  id: number;
  age: number;
  name: string;
};

// 相当于: type PickUser = { age: number; name: string; }
type OmitUser = Omit<User, "id">
1
2
3
4
5
6
7
8
9
10

ExcludeExtractOmit 这几个类型已内置在 Typescript 中原生实现

typeof

顾名思义,typeof 代表取某个值的 type,可以从以下示例来展示他们的用法

const a: number = 3

// 相当于: const b: number = 4
const b: typeof a = 4
1
2
3
4

在一个典型的服务端项目中,我们经常需要把一些工具塞到 context 中,如config,logger,db models, utils 等,此时就使用到 typeof

import logger from './logger'
import utils from './utils'

interface Context extends KoaContect {
  logger: typeof logger,
  utils: typeof utils
}

app.use((ctx: Context) => {
  ctx.logger.info('hello, world')

  // 会报错,因为 logger.ts 中没有暴露此方法,可以最大限度的避免拼写错误
  ctx.loger.info('hello, world')
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14

遍历属性 in

in 只能用在类型的定义中,可以对枚举类型进行遍历,如下:

// 这个类型可以将任何类型的键值转化成number类型
type Person = {
  name: string;
  age: number;
}

type TypeToNumber<T> = {
  [key in keyof T]: number
}

1
2
3
4
5
6
7
8
9
10

keyof返回泛型 T 的所有键枚举类型,key是自定义的任何变量名,中间用in链接,外围用[]包裹起来(这个是固定搭配),冒号右侧number将所有的key定义为number类型。

于是可以这样使用了:

const obj: TypeToNumber<Person> = { name: 10, age: 10 }

1
2

总结起来 in 的语法格式如下:

[ 自定义变量名 in 枚举类型 ]: 类型

1
2

is

在此之前,先看一个 koa 的错误处理流程,以下是对 error 进行集中处理,并且标识 code 的过程

app.use(async (ctx, next) => {
  try {
    await next();
  } catch (err) {
    let code = 'BAD_REQUEST'
    if (err.isAxiosError) {
      code = `Axios-${err.code}`
    } else if (err instanceof Sequelize.BaseError) {

    }
    ctx.body = {
      code
    }
  }
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

err.code 处,会编译出错,提示 Property 'code' does not exist on type 'Error'.ts(2339)

此时可以使用 as AxiosError 或者 as any 来避免报错,不过强制类型转换也不够友好

if ((err as AxiosError).isAxiosError) {
  code = `Axios-${(err as AxiosError).code}`
}
1
2
3

此时可以使用 is 来判定值的类型

function isAxiosError (error: any): error is AxiosError {
  return error.isAxiosError
}

if (isAxiosError(err)) {
  code = `Axios-${err.code}`
}
1
2
3
4
5
6
7

GraphQL 的源码中,有很多诸如此类的用法,用以标识类型

export function isType(type: any): type is GraphQLType;

export function isScalarType(type: any): type is GraphQLScalarType;

export function isObjectType(type: any): type is GraphQLObjectType;

export function isInterfaceType(type: any): type is GraphQLInterfaceType;
1
2
3
4
5
6
7

interface & type

interfacetype 的区别是什么?可以参考以下 stackoverflow 的问题

https://stackoverflow.com/questions/37233735/typescript-interfaces-vs-types

一般来说,interfacetype 区别很小,比如以下两种写法差不多

interface A {
  a: number;
  b: number;
};

type B = {
  a: number;
  b: number;
}
1
2
3
4
5
6
7
8
9

其中 interface 可以如下合并多个,而 type 只能使用 & 类进行连接。

interface A {
    a: number;
}

interface A {
    b: number;
}

const a: A = {
    a: 3,
    b: 4
}
1
2
3
4
5
6
7
8
9
10
11
12

Record & Dictionary & Many

这几个语法糖是从 lodash 的类型源码中学到的,平时工作中的使用频率还挺高。

type Record<K extends keyof any, T> = {
    [P in K]: T;
};

interface Dictionary<T> {
  [index: string]: T;
};

interface NumericDictionary<T> {
  [index: number]: T;
};

const data:Dictionary<number> = {
  a: 3,
  b: 4
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

实际上可用 Record 代替 DictionaryNumericDictionary

// 以下二者等价:
type A = Record<string, any>
type B = Dictionary<any>
1
2
3

Record 已内置在 Typescript 中原生实现,在平时中仅使用 Record 即可

infer & Return Type & Parameters Type

通过 infer,可类型推导出函数参数及返回值类型。

这里有一个有关协变与逆变的概念,看不懂可跳过。

函数的返回值类型是协变的,而参数类型是逆变的。,见 逆变与协变

function id(x: number): number {
  return x
}

type ReturnType<T extends (...args: any) => any> = T extends (...args: any) => infer R ? R : any
type Parameters<T extends (...args: any) => any> = T extends (...args: infer P) => any ? P : never
1
2
3
4
5
6

ReturnType 与 Parameters 已内置在 Typescript 中原生实现

使用 const enum 维护常量表

相比使用字面量对象维护常量,const enum 可以提供更安全的类型检查

// 使用 object 维护常量
const TODO_STATUS {
  TODO: 'TODO',
  DONE: 'DONE',
  DOING: 'DOING'
}
1
2
3
4
5
6
// 使用 const enum 维护常量
const enum TODO_STATUS {
  TODO = 'TODO',
  DONE = 'DONE',
  DOING = 'DOING'
}

function todos (status: TODO_STATUS): Todo[];

todos(TODO_STATUS.TODO)
1
2
3
4
5
6
7
8
9
10

VS Code Tips & Typescript Command

使用 VS Code 有时会出现,使用 tsc 编译时产生的问题与 vs code 提示的问题不一致

找到项目右下角的 Typescript 字样,右侧显示它的版本号,可以点击选择 Use Workspace Version,它表示与项目依赖的 typescript 版本一直。

或者编辑 .vs-code/settings.json

{
  "typescript.tsdk": "node_modules/typescript/lib"
}
1
2
3

Typescript Roadmap

最后一条也是最重要的一条,翻阅 Roadmap,了解 ts 的一些新的特性与 bug 修复情况。

Typescript Roadmap

参考