这是我的反应表单的提交功能。我不认为我做这个职位是正确的。这是用于登录提交。我得到一个 xhr.js:177 POST http://localhost:5000/login net::ERR_CONNECTION_REFUSED。不确定是网址还是帖子,或者究竟是什么。
const handleSubmit = event => {
event.preventDefault();
const user = {
username: username,
password: password,
}
axios.post('http://localhost:5000/login', user )
.then(res=>{
console.log(res);
console.log(res.data);
})
}