我在我的TSX标记中创建了一个textarea
元素,TS typechecker in Vim抱怨2540: Cannot assign to style because it is a read-only property
。让textarea.style成为只读的有点奇怪,因为它可以被写入...
如何让错误信息消失?我应该将代码中的input
变量强制转换为其他变量吗?
我在我的TSX标记中创建了一个textarea
元素,TS typechecker in Vim抱怨2540: Cannot assign to style because it is a read-only property
。让textarea.style成为只读的有点奇怪,因为它可以被写入...
如何让错误信息消失?我应该将代码中的input
变量强制转换为其他变量吗?
3条答案
按热度按时间gmxoilav1#
我用以下公式解决了这个问题:
显然,“TypeScript在元素上没有样式属性。”正如related Stackoverflow answer中提到的那样。
kx7yvsdv2#
显然,我已经有答案了...
说明输入变量是特定类型使它工作。
这可能是因为
createElement
can create all kinds of elements和Typescript无法知道是哪一个,因为它是基于输入字符串的,所以你需要说出它返回的是什么。2ul0zpep3#
或者你可以使用input.style.cssText
input.style.cssText = "white-space:pre; position:absolute; left:-9999px;";