API의 반환 값을 기반으로 무언가를 표시하는 양식을 만들어야합니다. 다음 코드로 작업하고 있습니다.
class App extends React.Component {
constructor(props) {
super(props);
this.state = {value: ''};
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}
handleChange(event) {
this.setState({value: event.target.value});
}
handleSubmit(event) {
alert('A name was submitted: ' + this.state.value); //error here
event.preventDefault();
}
render() {
return (
<form onSubmit={this.handleSubmit}>
<label>
Name:
<input type="text" value={this.state.value} onChange={this.handleChange} /> // error here
</label>
<input type="submit" value="Submit" />
</form>
);
}
}
다음과 같은 오류가 발생합니다.
error TS2339: Property 'value' does not exist on type 'Readonly<{}>'.
코드에 주석 처리 한 두 줄 에이 오류가 발생했습니다. 이 코드는 내 것이 아니며 반응 공식 사이트 ( https://reactjs.org/docs/forms.html )에서 얻었지만 여기에서는 작동하지 않습니다.
create-react-app 도구를 사용하고 있습니다.
당신의 문제는 다른 곳에 있습니다
—
Ted
나는 그것의 모든 "컴파일러"웹 사이트 작업, 알고 있지만, 그들은 나 프로젝트 수행하려면이 옵션을 사용하는 것이 좋습니다 github.com/Microsoft/TypeScript-React-Starter을 하고, 타이프 라이터의 compliter을 통해, 그것은 작동하지 않습니다
—
루이스 엔리케 짐머만을