13
ReactJS를 사용하여 입력 필드의 값을 얻는 방법은 무엇입니까?
다음과 같은 React 구성 요소가 있습니다. export default class MyComponent extends React.Component { onSubmit(e) { e.preventDefault(); var title = this.title; console.log(title); } render(){ return ( ... <form className="form-horizontal"> ... <input type="text" className="form-control" ref={(c) => this.title = c} name="title" /> ... </form> ... <button type="button" onClick={this.onSubmit} className="btn">Save</button> ... ); } }; …
188
javascript
reactjs