TypeScript problem with iterating over object properties

TypeScript problem with iterating over object properties

1. Problem

For 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 any

function test(obj:Animal) {
    for (let k in obj) {
        console.log((obj as any)[k]) //No error}
}


This method directly bypasses the typescript verification mechanism

2. Declare an interface for the object

type 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 Generics

function test<T extends object>(obj:T) {
    for (let k in obj) {
        console.log(obj [k]) //No error}
}

4. Use keyof

function 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:
  • TypeScript enumeration basics and examples
  • In-depth reading and practice records of conditional types in TypeScript
  • Typescript+react to achieve simple drag and drop effects on mobile and PC

<<:  Table setting background image cannot be 100% displayed solution

>>:  CSS realizes the scene analysis of semi-transparent border and multiple border

Recommend

Use Shell scripts to batch start and stop Docker services

Table of contents Start Docker Stop Docker Python...

jQuery implements navigation bar effect with expansion animation

I designed and customized a navigation bar with a...

Some pitfalls of JavaScript deep copy

Preface When I went to an interview at a company ...

Detailed explanation of MySQL cumulative calculation implementation method

Table of contents Preface Demand Analysis Mysql u...

How to enable TLS and CA authentication in Docker

Table of contents 1. Generate a certificate 2. En...

The magic of tbody tag speeds up the display of table content

You must have saved other people’s web pages and l...

Native js implements custom scroll bar component

This article example shares the specific code of ...

JavaScript design pattern learning adapter pattern

Table of contents Overview Code Implementation Su...

Node uses async_hooks module for request tracking

The async_hooks module is an experimental API off...

How to modify the initial password of a user in mysql5.7

When users install MySQL database for the first t...

HTTPS Principles Explained

As the cost of building HTTPS websites decreases,...

3 ways to correctly modify the maximum number of connections in MySQL

We all know that after the MySQL database is inst...