The role of the interface:Interface, in English: interface, its function can be simply understood as: providing a convention for our code.
For example: //Define the interface Person interface Person { name: string; age: number; } //Specify the type of the defined variable man as our Person "type" [This expression is not very accurate, just for ease of understanding] let man: Person; // At this point, when we assign a value to man, man must comply with the Person constraints we defined, that is, there must be an age field of type number and a name field of type string man = { age: 10, name: 'syw' } # Or like this function fun(women:Person){} // Parameter women must also comply with the Person constraint In the above example, I briefly talked about how to define an interface and its functions. Now I will briefly talk about other ways to play with interfaces: Set the interface optional properties:An interface with optional attributes is similar to a normal interface definition, except that a ? symbol is added after the optional attribute name definition. interface Person { name: string age?: number } The most common usage of optional attributes is when we are not sure whether this parameter will be passed or exists.
Additional property checks:Speaking of this, a simple summary is: we can set attributes to be optional, but we cannot pass wrong attributes.
This is the additional property check. Of course, we can also use type assertions to bypass these property checks, see the link: Type assertions in TypeScript [as syntax | <> syntax] Set the interface read-only attribute:Some object properties can only be modified when the object is first created. So we can use readonly before the attribute name to specify a read-only attribute. interface Person { readonly name: string; readonly age: number; } // Assign initial values let man: Person = {name: 'syw', age: 10}; // If you modify the value at this time, an error will occur. man.age = 20; // error! // Cannot assign to 'age' because it is a read-only property. In fact, the effect of using read-only attributes is similar to const. Of course, the two are not the same thing at all. I just say this for easy understanding. In Typescript, readonly and const are described as follows: Function type interface: Simply put, the interface of a function type specifies the parameter types of the function and the return value type of the function. interface PersonFun { (name: string, age: number): boolean } // Define a function that complies with the PersonFun constraint let manFun: PersonFun = (name: string, age: number) => { return age > 10; } Notice:
// This also meets the requirements let manFun: PersonFun = (name12: string, age12: number) => { return age > 10; } Indexable Type Interface:Simply put, the indexable type interface means that we can specify the type of index and the type of return value.
interface PersonArr { [index: number]: string } // Define array let manArr: PersonArr = ['syw','syw1','syw2']; // Query manArr[0]; // At this time, 0 is the index of type number, and the 0th element returns syw of type string Typescript supports two types of index signatures, which are actually index types: number and string. And, if we use a number type index, then the return value type defined must be a subtype of the return value defined for the string type index.
When I first saw this sentence, I understood the meaning of the text, but I didn’t know how to simply express it. After careful study, I realized that it might be because I’m too new to it. It’s actually very simple: // For example, my PersonArr has two indexes, one is of index (number) type and the other is of item (string) type. When I define the return values of these two indexes, I must strictly follow the above: // If you use a number type index, the return value type must be a subtype of the return value of the string type index. // So the interface I define below will report an error interface PersonArr { [index: number]: string; [item: string]: number; } // Because the index return value is of type string, it is obviously not a subtype of the item return value of type number. // How to write it correctly? The simplest way is to change the type of index return value to number. This is the end of this article about the TypeScript interface definition case tutorial. For more related TypeScript interface definition content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Solve the problem that the time zone cannot be set in Linux environment
>>: Install redis and MySQL on CentOS
1. Prerequisites 1. The project has been deployed...
HTML onfocus Event Attributes Definition and Usag...
Part 1 Overview of SSH Port Forwarding When you a...
1. Create a database authorization statement >...
Considering that many people now use smartphones, ...
Table of contents 1. Demand 1. Demand 2. SDK para...
public function json_product_list($where, $order)...
MySQL foreign key constraint (FOREIGN KEY) is a s...
1. Introduction to Layer 4 Load Balancing What is...
When it comes to styling our web pages, we have t...
Effect There are currently 2 projects (project1, ...
Recently I have used the function of renaming sto...
serializable serialization (no problem) Transacti...
Table of contents 1. Boolean 2. Expression 3. Mul...
This situation usually occurs because the Chinese...