Node.js端口中的API

时间:2019-04-19 07:05:30

标签: node.js reactjs error-handling port

我已经在nodejs后端和前端中创建了一个API,因为我已将api连接到表单上,所以我使用了reactjs

它显示错误

  

“无法代理请求”

enter image description here

2 个答案:

答案 0 :(得分:0)

在您的包裹中尝试一下。JSON配置refereed from create-react-app

"proxy": {
"/api": {
  "target": "https://localhost:5002",
  "secure": false
  }
},

还尝试将CORS配置添加到您的节点check this video

答案 1 :(得分:0)

检查Chrome开发人员工具中的错误。这很可能是CORS问题。

如果使用的是NodeJ,则可以使用以下命令。

res.header("Access-Control-Allow-Origin", "*");

但这将允许计算机上运行的所有端口的CORS。

使用快递时,我遇到了同样的问题。我解决了,如下所示: enter image description here enter image description here