摘要:會報錯,因為中沒有暴露此方法,可以最大限度的避免拼寫錯誤在此之前,先看一個的錯誤處理流程,以下是對進行集中處理,并且標識的過程在處,會編譯出錯,提示。
用了一段時間的 typescript 之后,深感中大型項目中 typescript 的必要性,它能夠提前在編譯期避免許多 bug,如很惡心的拼寫問題。而越來越多的 package 也開始使用 ts,學習 ts 已是勢在必行。
以下是我在工作中總結到的比較實用的 typescript 技巧。
本文鏈接: https://shanyue.tech/post/ts-...
01 keyofkeyof 與 Object.keys 略有相似,只不過 keyof 取 interface 的鍵。
interface Point { x: number; y: number; } // type keys = "x" | "y" type keys = keyof Point;
假設有一個 object 如下所示,我們需要使用 typescript 實現一個 get 函數來獲取它的屬性值
const data = { a: 3, hello: "world" } function get(o: object, name: string) { return o[name] }
我們剛開始可能會這么寫,不過它有很多缺點
無法確認返回類型:這將損失 ts 最大的類型校驗功能
無法對 key 做約束:可能會犯拼寫錯誤的問題
這時可以使用 keyof 來加強 get 函數的類型功能,有興趣的同學可以看看 _.get 的 type 標記以及實現
function get02 Partial & Pick(o: T, name: K): T[K] { return o[name] }
既然了解了 keyof,可以使用它對屬性做一些擴展, 如實現 Partial 和 Pick,Pick 一般用在 _.pick 中
type Partial03 Condition Type= { [P in keyof T]?: T[P]; }; type Pick = { [P in K]: T[P]; }; interface User { id: number; age: number; name: string; }; // 相當于: type PartialUser = { id?: number; age?: number; name?: string; } type PartialUser = Partial // 相當于: type PickUser = { id: number; age: number; } type PickUser = Pick
類似于 js 中的 ?: 運算符,可以使用它擴展一些基本類型
T extends U ? X : Y type isTrue04 never & Exclude & Omit= T extends true ? true : false // 相當于 type t = false type t = isTrue // 相當于 type t = false type t1 = isTrue
官方文檔對 never 的描述如下
the never type represents the type of values that never occur.
結合 never 與 conditional type 可以推出很多有意思而且實用的類型,比如 Omit
type Exclude= T extends U ? never : T; // 相當于: type A = "a" type A = Exclude<"x" | "a", "x" | "y" | "z">
結合 Exclude 可以推出 Omit 的寫法
type Omit05 typeof= Pick >; interface User { id: number; age: number; name: string; }; // 相當于: type PickUser = { age: number; name: string; } type OmitUser = Omit
顧名思義,typeof 代表取某個值的 type,可以從以下示例來展示他們的用法
const a: number = 3 // 相當于: const b: number = 4 const b: typeof a = 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") })06 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 } } })
在 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}` }
此時可以使用 is 來判定值的類型
function isAxiosError (error: any): error is AxiosError { return error.isAxiosError } if (isAxiosError(err)) { code = `Axios-${err.code}` }
在 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;07 interface & type
interface 與 type 的區別是什么?可以參考以下 stackoverflow 的問題
https://stackoverflow.com/que...
一般來說,interface 與 type 區別很小,比如以下兩種寫法差不多
interface A { a: number; b: number; }; type B { a: number; b: number; }
其中 interface 可以如下合并多個,而 type 只能使用 & 類進行連接。
interface A { a: number; } interface A { b: number; } const a: A = { a: 3, b: 4 }08 Dictionary & Many
這幾個語法糖是從 lodash 的 types 源碼中學到的,平時工作中的使用頻率還挺高。
interface Dictionary09 使用 const enum 維護常量表{ [index: string]: T; }; interface NumericDictionary { [index: number]: T; }; const data:Dictionary = { a: 3, b: 4 }
相比使用字面量對象維護常量,const enum 可以提供更安全的類型檢查
// 使用 object 維護常量 const enum TODO_STATUS { TODO = "TODO", DONE = "DONE", DOING = "DOING" }
// 使用 const enum 偉華常量 const enum TODO_STATUS { TODO = "TODO", DONE = "DONE", DOING = "DOING" } function todos (status: TODO_STATUS): Todo[]; todos(TODO_STATUS.TODO)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" }11 Typescript Roadmap
最后一條也是最重要的一條,翻閱 Roadmap,了解 ts 的一些新的特性與 bug 修復情況。
Typescript Roadmap
參考https://www.typescriptlang.or...
https://www.typescriptlang.or...
https://moin.world/2017/06/18...
歡迎關注我的公眾號山月行,在這里記錄著我的技術成長,歡迎交流
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/104611.html
摘要:一個帶提示的最后對于開發同學來說,就算不使用,也強烈建議使用提供注解,它會通過一些類型推導來檢查你的代碼的正確性,可以減少很多開發過程中的。相對于對象,它保證了輸入的類型你定義的對象可能某一天不再只有類型的,不再需要額外的類型判斷。 作者:陳達孚 香港中文大學研究生,《移動Web前端高效開發實戰》作者之一,《前端開發者指南2017》譯者之一,在中國前端開發者大會,中生代技術大會等技術...
摘要:官方文檔高級類型優先閱讀,建議閱讀英文文檔。關鍵字這個關鍵字是在版本引入的在條件類型語句中,該關鍵字用于替代手動獲取類型。源碼解釋使用條件判斷完成示例官方作用該類型可以獲得函數的參數類型組成的元組類型。 學習 TypeScript 到一定階段,必須要學會高階類型的使用,否則一些復雜的場景若是用 any 類型來處理的話,也就失去了 TS 類型檢查的意義。 本文羅列了 TypeScript...
摘要:往期第一課體驗第二課基礎類型和入門高級類型第三課泛型第四課解讀高級類型插一課本來打算接著上節課把高級類型都講完但是寫著寫著我發現高級類型中有很多地方都需要泛型的知識那么先插一節泛型什么是類型變量和泛型變量的概念我們都知道可以表示任意數據類型 往期 第一課, 體驗typescript 第二課, 基礎類型和入門高級類型 第三課, 泛型 第四課, 解讀高級類型 插一課 本來打算接著上節課, ...
摘要:入門,第一個這是一門很新的語言,年前后正式公布,算起來是比較年輕的編程語言了,更重要的是它是面向程序員的函數式編程語言,它的代碼運行在之上。它通過編輯類工具,帶來了先進的編輯體驗,增強了語言服務。 showImg(https://segmentfault.com/img/bV1xdq?w=900&h=385); 新的一年不知不覺已經到來了,總結過去的 2017,相信小伙們一定有很多收獲...
摘要:入門,第一個這是一門很新的語言,年前后正式公布,算起來是比較年輕的編程語言了,更重要的是它是面向程序員的函數式編程語言,它的代碼運行在之上。它通過編輯類工具,帶來了先進的編輯體驗,增強了語言服務。 showImg(https://segmentfault.com/img/bV1xdq?w=900&h=385); 新的一年不知不覺已經到來了,總結過去的 2017,相信小伙們一定有很多收獲...
閱讀 2092·2021-11-02 14:48
閱讀 2768·2019-08-30 14:19
閱讀 2937·2019-08-30 13:19
閱讀 1305·2019-08-29 16:17
閱讀 3243·2019-08-26 14:05
閱讀 2997·2019-08-26 13:58
閱讀 3084·2019-08-23 18:10
閱讀 1112·2019-08-23 18:04