我正在使用react native作为前端和后端我有laravel
我正在特灵向API发出axios post请求我的api在postman中工作正常
function getdata() {
const Data = {
name: name,
email: email,
date: mydate,
};
console.log(Data);
axios
.post('http://127.0.0.1:8000/api/users', Data)
.then(() => {
alert('success submited');
})
.catch(error => {
alert(error);
});
}
错误:axiosError:网络错误
1条答案
按热度按时间czq61nw11#
不使用127.0.0.1,而使用10.0.2.2