axios Post在react native中返回错误

mec1mxoz  于 2022-12-12  发布在  iOS
关注(0)|答案(1)|浏览(101)

我正在使用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:网络错误

相关问题