OverviewWhen using union types in TypeScript, you often encounter this awkward situation: interface Bird { // Unique method fly(); // Public method layEggs(); } interface Fish { // Unique method swim(); // Public method layEggs(); } function getSmallPet(): Fish | Bird { // ... } let pet = getSmallPet(); pet.layEggs(); // normal pet.swim(); // ts error As shown above, the getSmallPet function can return both Fish and Bird type objects. Since the type of the returned object is uncertain, everything works fine when using methods shared by union type objects, but ts will report an error when using methods unique to each union type object. So how to solve this problem? The most brutal method is of course to convert the union type to any, but this method is not worth advocating, after all, we are writing TypeScript instead of AnyScript. At this point, we use today's protagonist - type protection, which makes a shining debut and can perfectly solve this problem. Kong Yiji once said that there are four ways to write fennel beans. Similarly, there are four ways to write type protection. Type AssertionsType assertion is the most commonly used type protection method, which directly specifies the type. Since most of the types recognized in TypeScript are calculated by TypeScript's automatic type inference, the problem mentioned above will occur, that is, TypeScript does not know what the specific object type is, so it is not sure whether there are unique methods for each union type. When you use type assertions to specify types directly, it is equivalent to turning on TypeScript's God mode, so you can directly know the specific type is the one in the union type. At this time, using the unique method of the object is in line with TypeScript's inference. interface Bird { // Unique method fly(); // Public method layEggs(); } interface Fish { // Unique method swim(); // Public method layEggs(); } function getSmallPet(): Fish | Bird { // ... } let pet = getSmallPet(); pet.layEggs(); // Normal // Judge by duck type if ((pet as Bird).fly) { // Type assertion (pet as Bird).fly() } else { // Type assertion (pet as Fish).swim() } If you think that type assertion through as is not sophisticated enough, you can also use the generic type writing method, that is: let pet = getSmallPet(); pet.layEggs(); // Normal // Judge by duck type if ((<Bird>pet).fly) { (<Bird>pet).fly() } else { (<Fish>pet).swim() } Tips: Friendly reminder, although using generic type writing for type assertion seems more advanced, due to the grammatical ambiguity in tsx, for the sake of uniformity, it is recommended to use the as method for type assertion. in syntaxIn js, we often use the in syntax to determine whether a specified property is in the specified object or its prototype chain. Similarly, in TypeScript, we can confirm the object type in this way. interface Bird { // Unique method fly(); // Public method layEggs(); } interface Fish { // Unique method swim(); // Public method layEggs(); } function getSmallPet(): Fish | Bird { // ... } let pet = getSmallPet(); pet.layEggs(); // normal // use in syntax for type protection if ('fly' in pet) { pet.fly() } else { pet.swim() } The principle is the same as type assertion, which guides TypeScript type inference and determines the object type. instanceof syntaxWhen class is used instead of interface in the union type, instanceof syntax comes in handy. The instanceof syntax can be used to distinguish different class types. class Bird { // Unique method fly() {}; // Public method layEggs() {}; } class Fish { // Unique method swim() {}; // Public method layEggs() {}; } function getSmallPet(): Fish | Bird { // ... } let pet = getSmallPet(); pet.layEggs(); // Normal // Use in syntax if (pet instanceof Bird) { pet.fly() } else { pet.swim() } typeof syntaxThe typeof syntax is different from the in syntax and the instanceof syntax. Both the in syntax and the instanceof syntax are used to guide type inference to perform different object type inferences, while the typeof syntax is often used to infer basic types (or to use basic types and object types in combination). In short, use typeof when you can distinguish between the different types in a union type. function getSmallPet(): number | string { // ... } let pet = getSmallPet(); if (typeof pet === 'number') { pet++ } else { pet = Number(pet) + 1 } SummarizeJust as the essence of the four ways of writing fennel beans is still fennel beans, the essence of the four ways of writing type protection is also the same, that is, guiding the type inference in TypeScript to turn the multiple-choice questions of type inference into single-choice questions, which is the essence of type protection. The above is a detailed explanation of type protection in TypeScript. For more information about TypeScript type protection, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Database backup in docker environment (postgresql, mysql) example code
>>: MySQL Index Detailed Explanation
Detailed explanation of MySQL stored procedures, ...
Preface As we all know, the nginx configuration f...
What is MyCAT A completely open source large data...
1. CSS writing format 1. Inline styles You can wr...
MySQL8.0.12 installation tutorial, share with eve...
Table of contents - Preface - - JVM Class Loader ...
Table of contents 1. Introduction 2. RC and RR is...
Table of contents 1. Pull the image 1.1 Pull the ...
Table of contents 01 Background 02 Introduction 0...
Recently I need to change the version of MySQL da...
Table of contents Conclusion first question Solut...
1. MIME: Multipurpose Internet Mail Extensions Th...
Table of contents 1 Introduction to the new opera...
Setting min-width and max-width properties in tab...
<br />Structure and hierarchy reduce complex...