使用typescript并对具有明确类型定义的TSX文件做出反应,我收到错误:
error TS2339: Property 'for' does not exist on type 'HTMLProps<HTMLLabelElement>'.
尝试使用以下TSX编译组件时
<label for={this.props.inputId} className="input-label">{this.props.label}</label>
我已经解决了,但在这里为下一个人添加,因为解决方案在搜索时没有出现在任何地方(Google或StackOverflow)
答案 0 :(得分:65)
解决方案是将for
属性更改为htmlFor
<label htmlFor={this.props.inputId} className="input-label">{this.props.label}</label>
这是React库本身的一部分,显然处理for
的方式与class
(它使用className
)不同,而不是明确类型定义的问题。