1. ProblemFor example, the following code: type Animal = { name: string; age: number } const animal:Animal={ name:"dog", age:12 } function test(obj:Animal) { for (let k in obj) { console.log(obj[k]). //Error here} } test(animal) Error: 2. Solution 1. Declare the object as anyfunction test(obj:Animal) { for (let k in obj) { console.log((obj as any)[k]) //No error} } This method directly bypasses the 2. Declare an interface for the objecttype Animal = { name: string; age: number; [key: string]: any } const animal:Animal={ name:"dog", age:12 } function test(obj:Animal) { for (let k in obj) { console.log(obj [k]) //No error} } test(animal) This can be used for more common object types, especially some tool methods. 3. Use Genericsfunction test<T extends object>(obj:T) { for (let k in obj) { console.log(obj [k]) //No error} } 4. Use keyoffunction test(obj:Animal) { let k: (keyofAnimal); for (k in obj) { console.log(obj [k]) //No error} } This is the end of this article about TypeScript traversing object properties. For more information about TypeScript traversing object properties, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Table setting background image cannot be 100% displayed solution
>>: CSS realizes the scene analysis of semi-transparent border and multiple border
Table of contents Start Docker Stop Docker Python...
I designed and customized a navigation bar with a...
Preface When I went to an interview at a company ...
Table of contents Preface Demand Analysis Mysql u...
Table of contents 1. Generate a certificate 2. En...
introduction As usual, let's start with a sce...
Yesterday when I was implementing the function of...
You must have saved other people’s web pages and l...
This article example shares the specific code of ...
Table of contents Overview Code Implementation Su...
The async_hooks module is an experimental API off...
When users install MySQL database for the first t...
As the cost of building HTTPS websites decreases,...
We all know that after the MySQL database is inst...
Table of contents npm Install the loader Import P...