How I can serialize data in react ?
<form method="post" action="/insert" onSubmit={(e)=>this.addMysql(e)}>
<label>Username</label>
<input type="text" id="username" name="nameUser"/>
<label>Password</label>
<input type="text" id="password" name="passs"/>
<button type="submit" type="submit">Dodaj</button>
</form>
This is my function
addMysql(event){
console.log(event.targe) //this outputs an empty form
event.preventDefault();
}
I dont want use State. Just onSubmit send all form data to AddMysql
https://medium.com/@snirlugassy/generic-input-handler-with-react-js-44a97e22cd0d
Thanks Sag1v