当前位置: 代码迷 >> 综合 >> [ts] typeof ‘string‘ can not be used index type
  详细解决方案

[ts] typeof ‘string‘ can not be used index type

热度:28   发布时间:2023-12-12 01:13:25.0

error

typescript使用场景:用变量作为object的key取值,语法报错
typeof ‘string’ can not be used index type

solution

指定object的key的类型即可 obj: { [k:string]: string }

报错代码:

正常代码:

  相关解决方案