广告位联系
返回顶部
分享到

TS 类型收窄教程示例介绍

JavaScript 来源:互联网 作者:佚名 发布时间:2022-09-23 08:36:04 人浏览
摘要

类型收窄之前只能使用公共方法 JS方法 typeof 缺点 typeof null object typeof 数组 object typeof 日期 object ainstanceofA : A 是否出现在a的原型链上 缺点 不支持string、number、boolean等原始类型 不支持

类型收窄之前只能使用公共方法

JS方法

typeof

缺点

  • typeof null —→ object
  • typeof 数组 —→ object
  • typeof 日期 —→ object

a instanceof A : A 是否出现在a的原型链上

缺点

不支持string 、number 、boolean 等原始类型

不支持TS的 自定义类型,如下:

1

2

3

type Person {

  name: string

}

  • key in obj
  • Array.isArray()

????????类型谓词is

重点在 shape is Rect

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

type Rect = {

  width: number

  height: number

}

type Circle = {

  center: [number, number]

  radius: number

}

const area = (shape: Rect | Circle): number => {

  if(isRect(shape)) {

    return shape.width * shape.height

  } else {

    return Math.PI * shape.radius ^ 2

  }

}

const isRect = (shape: Rect | Circle): shape is Rect => {

  return 'width' in shape && 'height' in shape

}

????????????????可辨别联合

要求:T = A | B | C

  • A | B | C … 要有一个相同的属性 type或其它
  • type类型只能为 简单类型
  • A | B | C …的type属性无交集

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

type Rect = {

  type: 'rect',

  width: number

  height: number

}

type Circle = {

  type: 'circle'

  center: [number, number]

  radius: number

}

const area = (shape: Rect | Circle): number => {

  if(shape.type === 'rect') {

    return shape.width * shape.height

  } else {

    return Math.PI * shape.radius ^ 2

  }

}


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 : https://juejin.cn/post/7145305234007392269
相关文章
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计