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ক্ষেত্রগুলিতে …