如何使用 React App 连接到多个 API?
使用 http-proxy-middleware 使用 Express 后端创建-react-app。
演示错误:https ://github.com/svgpubs/nodeproxy.git
我正在http-proxy-middleware
尝试将演示 React App 连接到两个不同的服务器:一个外部网站https://api.coingecko.com/api/
和一个内部站点http://localhost:3001/
它适用于外部网站。但是,localhost:3001 连接不起作用。
如果我不使用 http-proxy-middleware(通过添加) 'proxy: 'http://localhost:3001'"
,我可以连接到 localhost:3001 package.json
- 但是,我只能拥有一个代理。
这是正在运行的应用程序:如您所见,没有来自 localhost:3001 的响应
错误:我尝试了很多不同的变化。我要么从浏览器获取一个 cors 块,要么 localhost api 从 public/index.html 返回 index.html 文件 - 导致浏览器中的 json 解析错误。在服务器上,根据 localhost 端点的确切路由,我有时会收到 50 多行此错误:
Error occurred while trying to proxy request /localhostapi/users from localhost:3001 to http://localhost:3001/ (ECONNRESET) (https://nodejs.org/api/errors.html#errors_common_system_errors)
如何设置服务器和代理,以便 App.js 可以连接到 localhost:3001 路由和外部 API?
这是我的App.js
import React, { useEffect, useState } from "react";
import "./App.css";
function App() {
const [externalServerResponse, setExternalServerResponse] = useState(
"no response"
);
const [localhostServerResponse, setLocalhostServerResponse] = useState(
"no response"
);
const getExternalAPI = async () => {
console.log("calling external api from client");
const result = await fetch("http://localhost:3001/api_to_external_website");
console.log("result", result);
const data = await result.json();
console.log("data", data);
setExternalServerResponse(JSON.stringify(data[0]));
};
const getLocalHostAPI = async () => {
console.log("calling localhost api from client");
const result = await fetch("/localhostapi"); //I've tried many syntax variations
console.log("result", result);
const data = await result.json();
console.log("data", data);
setLocalhostServerResponse(JSON.stringify(data));
};
useEffect(() => {
getExternalAPI();
getLocalHostAPI();
}, []);
return (
<div className="App">
<div style={{ marginTop: "3em", marginBottom: "1em" }}>
<h2>
Response from{" "}
<code>
<i>www.api.coingecko.com/api</i>
</code>
:
</h2>
</div>
<div>{externalServerResponse}</div>
<div style={{ marginTop: "3em", marginBottom: "1em" }}>
<h2>
Response from{" "}
<code>
<i>localhost:3001</i>
</code>{" "}
:{" "}
</h2>
</div>
<div>{localhostServerResponse}</div>
</div>
);
}
export default App;
这是server.js
const express = require("express");
const { createProxyMiddleware } = require("http-proxy-middleware");
const port = 3001;
const app = express();
app.use(
"/api_to_external_website",
createProxyMiddleware({
target:
"https://api.coingecko.com/api/v3/coins/markets?vs_currency=USD&order=market_cap_desc&per_page=100&page=1&sparkline=false",
headers: {
accept: "application/json",
method: "GET",
},
changeOrigin: true,
})
);
app.use(
"/localhostapi",
createProxyMiddleware({
target: `http://localhost:${port}/`,
headers: {
accept: "application/json",
method: "GET",
},
changeOrigin: true,
})
);
app.get("/", (req, res) => {
console.log("localhost:3001 api is running");
const data = { result: `Success! from localhostapi on localhost:${port}!!` };
res.send(JSON.parse(data));
});
app.listen(port, function () {
console.log(`server running now.. ${port}`);
});
如何设置我的服务器和代理,以便我的 App.js 可以同时获取 localhost:3001 路由和外部 API?
运行应用程序的说明:
在一个终端中:创建一个文件夹,克隆 nodeproxy 应用程序,安装依赖项,然后运行服务器
mkdir newfolder
cd newfolder
git clone https://github.com/svgpubs/nodeproxy.git
npm install
node server.js
然后,保持第一个终端运行,打开第二个终端窗口:转到同一个文件夹并启动反应应用程序。
cd newfolder
npm start
我尝试过的事情清单:
使用额外的 package.json 属性“代理:'localhost:3001'
src/setupProxy.js
const { createProxyMiddleware } = require("http-proxy-middleware");
module.exports = function(app) {
app.use(
"/localhostapi",
createProxyMiddleware({
target: `http://localhost:${port}/`,
headers: {
accept: "application/json",
method: "GET",
},
changeOrigin: true,
})
);
}
- 更改 fetch 和 app.use 语法
[![在此处输入图像描述][3]][3]