typescript如何用变量获取属性值
2021-08-26 本文已影响0人
竿牍
问题如图:
TS2538: Type 'undefined' cannot be used as an index type
image.pngimage.png
解决办法:声明接口的最后一个成员需要加上
[propName: string]: Function;
技术分享图片
问题如图:
TS2538: Type 'undefined' cannot be used as an index type
image.png[propName: string]: Function;
技术分享图片