Devo creare un modulo che visualizzi qualcosa in base al valore restituito di un'API. Sto lavorando con il seguente codice:
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>
);
}
}
Ricevo il seguente errore:
error TS2339: Property 'value' does not exist on type 'Readonly<{}>'.
Ho riscontrato questo errore nelle due righe che ho commentato sul codice. Questo codice non è nemmeno mio, l'ho preso dal sito ufficiale di reazione ( https://reactjs.org/docs/forms.html ), ma non funziona qui.
Sto usando lo strumento create-reagire-app.