如果在 React 中 GET 请求,则无法从服务器获得响应

时间:2021-01-15 17:05:56

标签: javascript reactjs tomcat

我有一个简单的 react 组件,只有一个锚标记 <a href="/Connection/react">Tomcat</a>,它向 tomcat 服务器发送一个 GET 请求,react 和 tomcat 分别在 localhost 的 3000 和 8080 端口上运行,我'我还在 http://localhost:8080 中为 package.json 设置了一个代理,但由于某种原因,如果请求方法是 GET,我不会从服务器收到任何响应。到目前为止,唯一对我有用的是使用 POST 通过 forms 请求获得响应。

"scripts": {
      "start": "react-scripts start",
      "build": "react-scripts build",
      "test": "react-scripts test",
      "eject": "react-scripts eject"
    },
"proxy":"http://localhost:8080",

0 个答案:

没有答案