我正在尝试将数据发送到我的Google Cloud服务器。 (登录表单)。我有一个错误,
[错误:请求失败,状态码为404]
我也尝试了获取方法,但是那里出现了网络失败错误。
这是我的代码:
handleLoginUser(){
const data = new FormData();
data.append('email', 'aaykgxr@gmail.com');
data.append('password', '1234567890');
return axios.post('http://*serverip*/users/login',
data,
{
headers: {
'Content-Type': 'application/json',
}
},
)
.then(function (response) {
console.log(response);
})
.catch(function (response) {
console.log(response);
});
}
感谢您的帮助。
答案 0 :(得分:0)
如果使用formdata,则应使用其他一些内容类型:
'Content-type':'multipart/form-data'
答案 1 :(得分:-1)
'http:// serverip /users/login.json().... dot json()丢失