TypeScript 中提高幸福感的 10 個高級技巧

用了一年時間的 TypeScript 了,項目中用到的技術是 Vue + TypeScript 的,深感中大型項目中 TypeScript 的必要性,特別是生命週期比較長的大型項目中更應該使用 TypeScript。html

如下是我在工做中總結到的常常會用到的 TypeScript 技巧。前端

1. 註釋

經過 /** */ 形式的註釋能夠給 TS 類型作標記提示,編輯器會有更好的提示:vue

/** This is a cool guy. */
interface Person {
  /** This is name. */
  name: string,
}

const p: Person = {
    name: 'cool'
}

若是想給某個屬性添加註釋說明或者友好提示,這種是很好的方式了。typescript

2. 接口繼承

和類同樣,接口也能夠相互繼承。 json

這讓咱們可以從一個接口裏複製成員到另外一個接口裏,能夠更靈活地將接口分割到可重用的模塊裏。前端工程師

interface Shape {
    color: string;
}

interface Square extends Shape {
    sideLength: number;
}

let square = <Square>{};
square.color = "blue";
square.sideLength = 10;

一個接口能夠繼承多個接口,建立出多個接口的合成接口。編輯器

interface Shape {
    color: string;
}

interface PenStroke {
    penWidth: number;
}

interface Square extends Shape, PenStroke {
    sideLength: number;
}

let square = <Square>{};
square.color = "blue";
square.sideLength = 10;
square.penWidth = 5.0;

3. interface & type

TypeScript 中定義類型的兩種方式:接口(interface)和 類型別名(type alias)。ide

好比下面的 Interface 和 Type alias 的例子中,除了語法,意思是同樣的:函數

Interfacepost

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

interface SetPoint {
  (x: number, y: number): void;
}

Type alias

type Point = {
  x: number;
  y: number;
};

type SetPoint = (x: number, y: number) => void;

並且二者均可以擴展,可是語法有所不一樣。此外,請注意,接口和類型別名不是互斥的。接口能夠擴展類型別名,反之亦然。

Interface extends interface

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

Type alias extends type alias

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

Interface extends type alias

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

Type alias extends interface

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

它們的差異能夠看下面這圖或者看 TypeScript: Interfaces vs Types

因此檙想巧用 interface & type 仍是不簡單的。

若是不知道用什麼,記住:能用 interface 實現,就用 interface , 若是不能就用 type 。

4. typeof

typeof 操做符能夠用來獲取一個變量或對象的類型。

咱們通常先定義類型,再使用:

interface Opt {
  timeout: number
}
const defaultOption: Opt = {
  timeout: 500
}

有時候能夠反過來:

const defaultOption = {
  timeout: 500
}
type Opt = typeof defaultOption

當一個 interface 總有一個字面量初始值時,能夠考慮這種寫法以減小重複代碼,至少減小了兩行代碼是吧,哈哈~

5. keyof

TypeScript 容許咱們遍歷某種類型的屬性,並經過 keyof 操做符提取其屬性的名稱。

keyof 操做符是在 TypeScript 2.1 版本引入的,該操做符能夠用於獲取某種類型的全部鍵,其返回類型是聯合類型。

keyofObject.keys 略有類似,只不過 keyofinterface 的鍵。

const persion = {
  age: 3,
  text: 'hello world'
}

// type keys = "age" | "text"
type keys = keyof Point;

寫一個方法獲取對象裏面的屬性值時,通常人可能會這麼寫

function get1(o: object, name: string) {
  return o[name];
}

const age1 = get1(persion, 'age');
const text1 = get1(persion, 'text');

可是會提示報錯

由於 object 裏面沒有事先聲明的 key。

固然若是把 o: object 修改成 o: any 就不會報錯了,可是獲取到的值就沒有類型了,也變成 any 了。

這時可使用 keyof 來增強 get 函數的類型功能,有興趣的同窗能夠看看 _.gettype 標記以及實現

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

6. 查找類型

interface Person {
    addr: {
        city: string,
        street: string,
        num: number,
    }
}

當須要使用 addr 的類型時,除了把類型提出來

interface Address {
    city: string,
    street: string,
    num: number,
}

interface Person {
    addr: Address,
}

還能夠

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

好比:

const addr: Person["addr"] = {
    city: 'string',
    street: 'string',
    num: 2
}

有些場合後者會讓代碼更整潔、易讀。

7. 查找類型 + 泛型 + keyof

泛型(Generics)是指在定義函數、接口或類的時候,不預先指定具體的類型,而在使用的時候再指定類型的一種特性。

interface API {
    '/user': { name: string },
    '/menu': { foods: string[] }
}
const get = <URL extends keyof API>(url: URL): Promise<API[URL]> => {
    return fetch(url).then(res => res.json());
}

get('');
get('/menu').then(user => user.foods);

8. 類型斷言

Vue 組件裏面常常會用到 ref 來獲取子組件的屬性或者方法,可是每每都推斷不出來有啥屬性與方法,還會報錯。

子組件:

<script lang="ts">
import { Options, Vue } from "vue-class-component";

@Options({
  props: {
    msg: String,
  },
})
export default class HelloWorld extends Vue {
  msg!: string;
}
</script>

父組件:

<template>
  <div class="home">
    <HelloWorld
      ref="helloRef"
      msg="Welcome to Your Vue.js + TypeScript App"
    />
  </div>
</template>

<script lang="ts">
import { Options, Vue } from "vue-class-component";
import HelloWorld from "@/components/HelloWorld.vue"; // @ is an alias to /src

@Options({
  components: {
    HelloWorld,
  },
})
export default class Home extends Vue {
  print() {
    const helloRef = this.$refs.helloRef;
    console.log("helloRef.msg: ", helloRef.msg); 
  }

  mounted() {
    this.print();
  }
}
</script>

由於 this.$refs.helloRef 是未知的類型,會報錯誤提示:

作個類型斷言便可:

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

可是類型斷言爲 any 時是很差的,若是知道具體的類型,寫具體的類型纔好,否則引入 TypeScript 冒似沒什麼意義了。

9. 顯式泛型

$('button') 是個 DOM 元素選擇器,但是返回值的類型是運行時才能肯定的,除了返回 any ,還能夠

function $<T extends HTMLElement>(id: string): T {
    return (document.getElementById(id)) as T;
}

// 不肯定 input 的類型
// const input = $('input');

// Tell me what element it is.
const input = $<HTMLInputElement>('input');
console.log('input.value: ', input.value);

函數泛型不必定非得自動推導出類型,有時候顯式指定類型就好。

10. DeepReadonly

readonly 標記的屬性只能在聲明時或類的構造函數中賦值。

以後將不可改(即只讀屬性),不然會拋出 TS2540 錯誤。

與 ES6 中的 const 很類似,但 readonly 只能用在類(TS 裏也能夠是接口)中的屬性上,至關於一個只有 getter 沒有 setter 的屬性的語法糖。

下面實現一個深度聲明 readonly 的類型:

type DeepReadonly<T> = {
  readonly [P in keyof T]: DeepReadonly<T[P]>;
}

const a = { foo: { bar: 22 } }
const b = a as DeepReadonly<typeof a>
b.foo.bar = 33 // Cannot assign to 'bar' because it is a read-only property.ts(2540)

最後

大佬們,以爲有用就贊一個唄。

挺久沒寫原創技術文章了,做爲 2021 第一篇原創技術文章,質量應該還能夠吧 😅

筆者的年終總結在這裏: 前端工程師的 2020 年終總結 - 乾坤未定,你我皆黑馬,但願能帶給你一點啓發。

參考文章:

推薦閱讀

相關文章
相關標籤/搜索