React组件中的Js Fetch

时间:2019-12-11 11:00:21

标签: javascript api fetch

我有一个在Heroku服务器(Jersey App)上运行的API,我想在我的react WebApp中调用它。 我用Postman测试了每条API路由,都可以正常工作,但是当我想在Web应用程序中使用fetch调用它时,我得到了415代码,我相信我正确设置了标头:

try {
  const response = await fetch("https://pfe-api-dev.herokuapp.com/user/connection", {
    method: "POST",
    body: JSON.stringify(user),
    mode: 'no-cors',
    headers: {
      "Content-Type": "application/json",
      "Accept": "application/json"
    }
  });
}

以及Web控制台中的错误:

enter image description here

这是邮递员中的相同请求:

enter image description here

enter image description here

显然,期望的行为是在Web应用程序中获得与邮递员相同的响应...

我可以忽略一些明显的东西吗?

谢谢

0 个答案:

没有答案