4
'읽기 전용 <{}>'유형에 'value'속성이 없습니다.
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() …
155
reactjs
typescript