2 回答
幕布斯6054654
TA贡献1876条经验 获得超7个赞
与其问typescript怎么遍历object 还不如问javascript怎么遍历object,作为javascript的超集,用typescript写的东西完全可以在javascript里运行,typescript里边也可以使用javascript的语法。回答你的问题你需要明白JavaScript怎么遍历Object的,也就是你问的题干的答案。
你可以这样理解超集含义,typescript本身没有Object这个类型,或者typescript里边的object类型跟javascript的一样
九州编程
TA贡献1785条经验 获得超4个赞
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | interface People { readonly name: string readonly age: number } const people: People = { name: 'tom', age: 16 } for(let key in people){ console.log(key) } const people2: ReadonlyArray<People> = [{ name: 'tom', age: 14 }] //遍历数组类型 for(let key of people2){ } for(let key in people2){ } people2.forEach((data: People) => console.log(data)) |
添加回答
举报
0/150
提交
取消