您好,登錄后才能下訂單哦!
這篇文章主要介紹了TypeScript編寫(xiě)代碼時(shí)應(yīng)改正的壞習(xí)慣有哪些,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
strict
模式沒(méi)有用嚴(yán)格模式編寫(xiě) tsconfig.json
。
{ "compilerOptions": { "target": "ES2015", "module": "commonjs" } }
只需啟用 strict
模式即可:
{ "compilerOptions": { "target": "ES2015", "module": "commonjs", "strict": true } }
在現(xiàn)有代碼庫(kù)中引入更嚴(yán)格的規(guī)則需要花費(fèi)時(shí)間。
更嚴(yán)格的規(guī)則使將來(lái)維護(hù)代碼時(shí)更加容易,使你節(jié)省大量的時(shí)間。
||
定義默認(rèn)值使用舊的 ||
處理后備的默認(rèn)值:
function createBlogPost (text: string, author: string, date?: Date) { return { text: text, author: author, date: date || new Date() } }
使用新的 ??
運(yùn)算符,或者在參數(shù)重定義默認(rèn)值。
function createBlogPost (text: string, author: string, date: Date = new Date()) return { text: text, author: author, date: date } }
??
運(yùn)算符是去年才引入的,當(dāng)在長(zhǎng)函數(shù)中使用值時(shí),可能很難將其設(shè)置為參數(shù)默認(rèn)值。
??
與 ||
不同,??
僅針對(duì) null
或 undefined
,并不適用于所有虛值。
any
類(lèi)型當(dāng)你不確定結(jié)構(gòu)時(shí),可以用 any
類(lèi)型。
async function loadProducts(): Promise<Product[]> { const response = await fetch('https://api.mysite.com/products') const products: any = await response.json() return products }
把你代碼中任何一個(gè)使用 any
的地方都改為 unknown
async function loadProducts(): Promise<Product[]> { const response = await fetch('https://api.mysite.com/products') const products: unknown = await response.json() return products as Product[] }
any
是很方便的,因?yàn)樗旧辖昧怂械念?lèi)型檢查。通常,甚至在官方提供的類(lèi)型中都使用了 any
。例如,TypeScript 團(tuán)隊(duì)將上面例子中的 response.json()
的類(lèi)型設(shè)置為 Promise <any>
。
它基本上禁用所有類(lèi)型檢查。任何通過(guò) any
進(jìn)來(lái)的東西將完全放棄所有類(lèi)型檢查。這將會(huì)使錯(cuò)誤很難被捕獲到。
val as SomeType
強(qiáng)行告訴編譯器無(wú)法推斷的類(lèi)型。
async function loadProducts(): Promise<Product[]> { const response = await fetch('https://api.mysite.com/products') const products: unknown = await response.json() return products as Product[] }
這正是 Type Guard
的用武之地。
function isArrayOfProducts (obj: unknown): obj is Product[] { return Array.isArray(obj) && obj.every(isProduct) } function isProduct (obj: unknown): obj is Product { return obj != null && typeof (obj as Product).id === 'string' } async function loadProducts(): Promise<Product[]> { const response = await fetch('https://api.mysite.com/products') const products: unknown = await response.json() if (!isArrayOfProducts(products)) { throw new TypeError('Received malformed products API response') } return products }
從 JavaScript 轉(zhuǎn)到 TypeScript 時(shí),現(xiàn)有的代碼庫(kù)通常會(huì)對(duì) TypeScript 編譯器無(wú)法自動(dòng)推斷出的類(lèi)型進(jìn)行假設(shè)。在這時(shí),通過(guò) as SomeOtherType
可以加快轉(zhuǎn)換速度,而不必修改 tsconfig
中的設(shè)置。
Type Guard
會(huì)確保所有檢查都是明確的。
as any
編寫(xiě)測(cè)試時(shí)創(chuàng)建不完整的用例。
interface User { id: string firstName: string lastName: string email: string } test('createEmailText returns text that greats the user by first name', () => { const user: User = { firstName: 'John' } as any expect(createEmailText(user)).toContain(user.firstName) }
如果你需要模擬測(cè)試數(shù)據(jù),請(qǐng)將模擬邏輯移到要模擬的對(duì)象旁邊,并使其可重用。
interface User { id: string firstName: string lastName: string email: string } class MockUser implements User { id = 'id' firstName = 'John' lastName = 'Doe' email = 'john@doe.com' } test('createEmailText returns text that greats the user by first name', () => { const user = new MockUser() expect(createEmailText(user)).toContain(user.firstName) }
在給尚不具備廣泛測(cè)試覆蓋條件的代碼編寫(xiě)測(cè)試時(shí),通常會(huì)存在復(fù)雜的大數(shù)據(jù)結(jié)構(gòu),但要測(cè)試的特定功能僅需要其中的一部分。短期內(nèi)不必關(guān)心其他屬性。
在某些情況下,被測(cè)代碼依賴(lài)于我們之前認(rèn)為不重要的屬性,然后需要更新針對(duì)該功能的所有測(cè)試。
將屬性標(biāo)記為可選屬性,即便這些屬性有時(shí)不存在。
interface Product { id: string type: 'digital' | 'physical' weightInKg?: number sizeInMb?: number }
明確哪些組合存在,哪些不存在。
interface Product { id: string type: 'digital' | 'physical' } interface DigitalProduct extends Product { type: 'digital' sizeInMb: number } interface PhysicalProduct extends Product { type: 'physical' weightInKg: number }
將屬性標(biāo)記為可選而不是拆分類(lèi)型更容易,并且產(chǎn)生的代碼更少。它還需要對(duì)正在構(gòu)建的產(chǎn)品有更深入的了解,并且如果對(duì)產(chǎn)品的設(shè)計(jì)有所修改,可能會(huì)限制代碼的使用。
類(lèi)型系統(tǒng)的最大好處是可以用編譯時(shí)檢查代替運(yùn)行時(shí)檢查。通過(guò)更顯式的類(lèi)型,能夠?qū)赡懿槐蛔⒁獾腻e(cuò)誤進(jìn)行編譯時(shí)檢查,例如確保每個(gè) DigitalProduct
都有一個(gè) sizeInMb
。
用一個(gè)字母命名泛型
function head<T> (arr: T[]): T | undefined { return arr[0] }
提供完整的描述性類(lèi)型名稱(chēng)。
function head<Element> (arr: Element[]): Element | undefined { return arr[0] }
這種寫(xiě)法最早來(lái)源于C++的范型庫(kù),即使是 TS 的官方文檔也在用一個(gè)字母的名稱(chēng)。它也可以更快地輸入,只需要簡(jiǎn)單的敲下一個(gè)字母 T
就可以代替寫(xiě)全名。
通用類(lèi)型變量也是變量,就像其他變量一樣。當(dāng) IDE 開(kāi)始向我們展示變量的類(lèi)型細(xì)節(jié)時(shí),我們已經(jīng)慢慢放棄了用它們的名稱(chēng)描述來(lái)變量類(lèi)型的想法。例如我們現(xiàn)在寫(xiě)代碼用 const name ='Daniel'
,而不是 const strName ='Daniel'
。同樣,一個(gè)字母的變量名通常會(huì)令人費(fèi)解,因?yàn)椴豢绰暶骶秃茈y理解它們的含義。
通過(guò)直接將值傳給 if
語(yǔ)句來(lái)檢查是否定義了值。
function createNewMessagesResponse (countOfNewMessages?: number) { if (countOfNewMessages) { return `You have ${countOfNewMessages} new messages` } return 'Error: Could not retrieve number of new messages' }
明確檢查我們所關(guān)心的狀況。
function createNewMessagesResponse (countOfNewMessages?: number) { if (countOfNewMessages !== undefined) { return `You have ${countOfNewMessages} new messages` } return 'Error: Could not retrieve number of new messages' }
編寫(xiě)簡(jiǎn)短的檢測(cè)代碼看起來(lái)更加簡(jiǎn)潔,使我們能夠避免思考實(shí)際想要檢測(cè)的內(nèi)容。
也許我們應(yīng)該考慮一下實(shí)際要檢查的內(nèi)容。例如上面的例子以不同的方式處理 countOfNewMessages
為 0
的情況。
將非布爾值轉(zhuǎn)換為布爾值。
function createNewMessagesResponse (countOfNewMessages?: number) { if (!!countOfNewMessages) { return `You have ${countOfNewMessages} new messages` } return 'Error: Could not retrieve number of new messages' }
明確檢查我們所關(guān)心的狀況。
function createNewMessagesResponse (countOfNewMessages?: number) { if (countOfNewMessages !== undefined) { return `You have ${countOfNewMessages} new messages` } return 'Error: Could not retrieve number of new messages' }
對(duì)某些人而言,理解 !!
就像是進(jìn)入 JavaScript 世界的入門(mén)儀式。它看起來(lái)簡(jiǎn)短而簡(jiǎn)潔,如果你對(duì)它已經(jīng)非常習(xí)慣了,就會(huì)知道它的含義。這是將任意值轉(zhuǎn)換為布爾值的便捷方式。尤其是在如果虛值之間沒(méi)有明確的語(yǔ)義界限時(shí),例如 null
、undefined
和 ''
。
與很多編碼時(shí)的便捷方式一樣,使用 !!
實(shí)際上是混淆了代碼的真實(shí)含義。這使得新開(kāi)發(fā)人員很難理解代碼,無(wú)論是對(duì)一般開(kāi)發(fā)人員來(lái)說(shuō)還是對(duì) JavaScript 來(lái)說(shuō)都是新手。也很容易引入細(xì)微的錯(cuò)誤。在對(duì)“非布爾類(lèi)型的值”進(jìn)行布爾檢查時(shí) countOfNewMessages
為 0
的問(wèn)題在使用 !!
時(shí)仍然會(huì)存在。
!= null
棒棒運(yùn)算符的小弟 ! = null
使我們能同時(shí)檢查 null
和 undefined
。
function createNewMessagesResponse (countOfNewMessages?: number) { if (countOfNewMessages != null) { return `You have ${countOfNewMessages} new messages` } return 'Error: Could not retrieve number of new messages' }
明確檢查我們所關(guān)心的狀況。
function createNewMessagesResponse (countOfNewMessages?: number) { if (countOfNewMessages !== undefined) { return `You have ${countOfNewMessages} new messages` } return 'Error: Could not retrieve number of new messages' }
如果你的代碼在 null
和 undefined
之間沒(méi)有明顯的區(qū)別,那么 != null
有助于簡(jiǎn)化對(duì)這兩種可能性的檢查。
盡管 null
在 JavaScript早期很麻煩,但 TypeScript 處于 strict
模式時(shí),它卻可以成為這種語(yǔ)言中寶貴的工具。一種常見(jiàn)模式是將 null
值定義為不存在的事物,將 undefined
定義為未知的事物,例如 user.firstName === null
可能意味著用戶實(shí)際上沒(méi)有名字,而 user.firstName === undefined
只是意味著我們尚未詢問(wèn)該用戶(而 user.firstName ===
的意思是字面意思是 ''
。
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“TypeScript編寫(xiě)代碼時(shí)應(yīng)改正的壞習(xí)慣有哪些”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。