仅当我创建我的react应用的内部版本时,才会发生此问题。开始做的很好。我将使用下面的快速代码托管react应用,以防万一。
const express = require('express');
const cors = require('cors');
var path = require("path");
const app = express();
const port = process.env.PORT || 4444;
app.use(cors('*'));
app.use(express.static(path.join(__dirname, 'build')));
app.listen(port, () => console.log(`Listening on port ${port}`));
这是我在主要应用程序组件中安装的apollo客户端
const clientUrl = 'http://localhost:4444/graphql';
const client = new ApolloClient({ uri: clientUrl });
这提供了localhost:4444/graphql
到客户端的链接
下面是我当前所处的链接以及它正在尝试访问graphql的链接
http://localhost:4444/dashboard/deals/new <-- my current page
http://localhost:4444/dashboard/deals/localhost:4444/graphql <-- data sent here
似乎正在添加apollo-client链接,该链接应该是当前位置顶部减去顶部的位置。我什至不知道在哪里寻找如何解决此问题或为什么它仅在构建中发生。