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() { …