文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

TypeScript 中提升幸福感的 10 个高级技巧

2024-12-03 12:46

关注

以下是我在工作中总结到的经常会用到的 TypeScript 技巧。

1. 注释

通过  形式的注释可以给 TS 类型做标记提示,编辑器会有更好的提示:

  1.  
  2. interface Person { 
  3.    
  4.   name: string, 
  5.  
  6. const p: Person = { 
  7.     name: 'cool' 

如果想给某个属性添加注释说明或者友好提示,这种是很好的方式了。

 

2. 接口继承

和类一样,接口也可以相互继承。

这让我们能够从一个接口里复制成员到另一个接口里,可以更灵活地将接口分割到可重用的模块里。

  1. interface Shape { 
  2.     color: string; 
  3.  
  4. interface Square extends Shape { 
  5.     sideLength: number; 
  6.  
  7. let square = {}; 
  8. square.color = "blue"
  9. square.sideLength = 10

一个接口可以继承多个接口,创建出多个接口的合成接口。

  1. interface Shape { 
  2.     color: string; 
  3.  
  4. interface PenStroke { 
  5.     penWidth: number; 
  6.  
  7. interface Square extends Shape, PenStroke { 
  8.     sideLength: number; 
  9.  
  10. let square = {}; 
  11. square.color = "blue"
  12. square.sideLength = 10
  13. square.penWidth = 5.0

3. interface & type

TypeScript 中定义类型的两种方式:接口(interface)和 类型别名(type alias)。

比如下面的 Interface 和 Type alias 的例子中,除了语法,意思是一样的:

Interface

  1. interface Point { 
  2.   x: number; 
  3.   y: number; 
  4.  
  5. interface SetPoint { 
  6.   (x: number, y: number): void

Type alias

  1. type Point = { 
  2.   x: number; 
  3.   y: number; 
  4. }; 
  5.  
  6. type SetPoint = (x: number, y: number) => void

而且两者都可以扩展,但是语法有所不同。此外,请注意,接口和类型别名不是互斥的。接口可以扩展类型别名,反之亦然。

Interface extends interface

  1. interface PartialPointX { x: number; } 
  2. interface Point extends PartialPointX { y: number; } 

Type alias extends type alias

  1. type PartialPointX = { x: number; }; 
  2. type Point = PartialPointX & { y: number; }; 

Interface extends type alias

  1. type PartialPointX = { x: number; }; 
  2. interface Point extends PartialPointX { y: number; } 

Type alias extends interface

  1. interface PartialPointX { x: number; } 
  2. type Point = PartialPointX & { y: number; }; 

它们的差别可以看下面这图或者看 TypeScript: Interfaces vs Types 。

所以檙想巧用 interface & type 还是不简单的。

如果不知道用什么,记住:能用 interface 实现,就用 interface , 如果不能就用 type 。

4. typeof

typeof 操作符可以用来获取一个变量或对象的类型。

我们一般先定义类型,再使用:

  1. interface Opt { 
  2.   timeout: number 
  3. const defaultOption: Opt = { 
  4.   timeout: 500 

有时候可以反过来:

  1. const defaultOption = { 
  2.   timeout: 500 
  3. type Opt = typeof defaultOption 

 

当一个 interface 总有一个字面量初始值时,可以考虑这种写法以减少重复代码,至少减少了两行代码是吧,哈哈~

5. keyof

TypeScript 允许我们遍历某种类型的属性,并通过 keyof 操作符提取其属性的名称。

keyof 操作符是在 TypeScript 2.1 版本引入的,该操作符可以用于获取某种类型的所有键,其返回类型是联合类型。

keyof 与 Object.keys 略有相似,只不过 keyof 取 interface 的键。

  1. const persion = { 
  2.   age: 3
  3.   text: 'hello world' 
  4.  
  5. // type keys = "age" | "text" 
  6. type keys = keyof Point; 

写一个方法获取对象里面的属性值时,一般人可能会这么写

  1. function get1(o: object, name: string) { 
  2.   return o[name]; 
  3.  
  4. const age1 = get1(persion, 'age'); 
  5. const text1 = get1(persion, 'text'); 

但是会提示报错

因为 object 里面没有事先声明的 key。

当然如果把 o: object 修改为 o: any 就不会报错了,但是获取到的值就没有类型了,也变成 any 了。

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

  1. function getextends object, K extends keyof T>(o: T, name: K): T[K] { 
  2.   return o[name] 

6. 查找类型

  1. interface Person { 
  2.     addr: { 
  3.         city: string, 
  4.         street: string, 
  5.         num: number, 
  6.     } 

当需要使用 addr 的类型时,除了把类型提出来

  1. interface Address { 
  2.     city: string, 
  3.     street: string, 
  4.     num: number, 
  5.  
  6. interface Person { 
  7.     addr: Address, 

还可以

  1. Person["addr"// This is Address. 

比如:

  1. const addr: Person["addr"] = { 
  2.     city: 'string'
  3.     street: 'string'
  4.     num: 2 

有些场合后者会让代码更整洁、易读。

7. 查找类型 + 泛型 + keyof

泛型(Generics)是指在定义函数、接口或类的时候,不预先指定具体的类型,而在使用的时候再指定类型的一种特性。

  1. interface API { 
  2.     '/user': { name: string }, 
  3.     '/menu': { foods: string[] } 
  4. const get = extends keyof API>(url: URL): Promise => { 
  5.     return fetch(url).then(res => res.json()); 
  6.  
  7. get(''); 
  8. get('/menu').then(user => user.foods); 

 

8. 类型断言

Vue 组件里面经常会用到 ref 来获取子组件的属性或者方法,但是往往都推断不出来有啥属性与方法,还会报错。

子组件:

  1. "ts"
  2. import { Options, Vue } from "vue-class-component"
  3.  
  4. @Options({ 
  5.   props: { 
  6.     msg: String, 
  7.   }, 
  8. }) 
  9. export default class HelloWorld extends Vue { 
  10.   msg!: string; 
  11.  

父组件:

  1.  
  2.  
  3. "ts"
  4. import { Options, Vue } from "vue-class-component"
  5. import HelloWorld from "@/components/HelloWorld.vue"// @ is an alias to /src 
  6.  
  7. @Options({ 
  8.   components: { 
  9.     HelloWorld, 
  10.   }, 
  11. }) 
  12. export default class Home extends Vue { 
  13.   print() { 
  14.     const helloRef = this.$refs.helloRef; 
  15.     console.log("helloRef.msg: ", helloRef.msg);  
  16.   } 
  17.  
  18.   mounted() { 
  19.     this.print(); 
  20.   } 
  21.  

因为 this.$refs.helloRef 是未知的类型,会报错误提示:

做个类型断言即可:

  1. print() { 
  2.     // const helloRef = this.$refs.helloRef; 
  3.     const helloRef = this.$refs.helloRef as any; 
  4.     console.log("helloRef.msg: ", helloRef.msg); // helloRef.msg:  Welcome to Your Vue.js + TypeScript App 
  5.   } 

但是类型断言为 any 时是不好的,如果知道具体的类型,写具体的类型才好,不然引入 TypeScript 冒似没什么意义了。

9. 显式泛型

$('button') 是个 DOM 元素选择器,可是返回值的类型是运行时才能确定的,除了返回 any ,还可以

  1. function $extends HTMLElement>(id: string): T { 
  2.     return (document.getElementById(id)) as T; 
  3.  
  4. // 不确定 input 的类型 
  5. // const input = $('input'); 
  6.  
  7. // Tell me what element it is. 
  8. const input = $('input'); 
  9. console.log('input.value: ', input.value); 

函数泛型不一定非得自动推导出类型,有时候显式指定类型就好。

10. DeepReadonly

被 readonly 标记的属性只能在声明时或类的构造函数中赋值。

之后将不可改(即只读属性),否则会抛出 TS2540 错误。

与 ES6 中的 const 很相似,但 readonly 只能用在类(TS 里也可以是接口)中的属性上,相当于一个只有 getter 没有 setter 的属性的语法糖。

下面实现一个深度声明 readonly 的类型:

  1. type DeepReadonly = { 
  2.   readonly [P in keyof T]: DeepReadonly
  3.  
  4. const a = { foo: { bar: 22 } } 
  5. const b = a as DeepReadonly 
  6. b.foo.bar = 33 // Cannot assign to 'bar' because it is a read-only property.ts(2540) 

 

来源:segmentfault.com内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯