20
ReactJS에서 양식 데이터 가져 오기
내 render기능에는 다음과 같은 간단한 형식 이 있습니다. render : function() { return ( <form> <input type="text" name="email" placeholder="Email" /> <input type="password" name="password" placeholder="Password" /> <button type="button" onClick={this.handleLogin}>Login</button> </form> ); }, handleLogin: function() { //How to access email and password here ? } handleLogin: function() { ... }액세스 Email및 Password필드 …