0
私のクリックハンドラしない火災:私のボタンONonClickのは、クリックハンドラを発射しませ
submitForm(UserDetails) {
axios
.post('http://localhost:3001/api/users', UserDetails)
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.log(error);
});
}
:
<button
className="btn btn-primary"
onClick={this.submitForm(this.props.UserDetails)}>
Upload
</button>
私は私のコンストラクタで、このにそれを結合した:
constructor() {
super();
this.submitForm = this.submitForm.bind(this);
}
アイデアonClickので
コンソールにエラーがありますか? – abdul