为什么我无法从API中获取JSON响应?我有这个函数向我的API发出axios POST请求。
handleSubmit(event) {
axios.post('/api/v1/user_token/',{
auth: {
email: this.state.email,
password: this.state.password
}
})
.then(function(response) {
console.log(response.data);
console.log(response.statusText);
})
.catch(function (error) {
console.log(error);
})
}
它在Response主体中返回正确的JsonWebToken。但是,当我尝试使用它设置cookie或将其输出到console.log时,如console.log(response.data)
我在输出中看不到任何内容。附上相关图片。
答案 0 :(得分:0)
我刚刚在响应中使用了错误的命名空间。最终,我坚持能够通过在函数中包含e.preventDefault()
来记录所有内容。
handleSubmit(e) {
e.preventDefault();
axios.post('/api/v1/user_token/',
{auth: {
email: this.state.email,
password: this.state.password
}
})
.then(function(response) {
if (response.status !== 201) {
console.log('Authentication failed.' + response.status);
}
return response.data;
})
}