0

我目前正在开发一个 Web 应用程序,它的服务器和 Web 应用程序分别部署。我已经在 Heroku 上部署了我的服务器和数据库,而我使用 Vercel 来部署我的 Next JS 应用程序。

我的问题是当我使用 isomorphic-unfetch 从 Vercel 发出请求时,它会在请求中添加我的应用程序的地址(https://myapp.vercel.app/myapp.herokuapp.com/)。我只希望http://myapp.herokuapp.com成为请求。

这就是我为它编写代码的方式。

import fetch from 'isomorphic-unfetch'
const host = process.env.API_ENDPOINT -- in this case, it was myapp.herokuapp.com

const myFunction = async(data) => {
  const request = host.concat('/postSomething');
  const res = await fetch(
    request,
    {
      body: JSON.stringify({
        variableA: data.variableA,
        variableB: data.variableB
      }),
      headers: {
        'Content-Type': 'application/json'
      },
      method: 'POST'
    }  
  );
  return await res.json();
}
4

1 回答 1

0

显然,这只是我的 next.config.js 文件中的一个语法错误。当我声明 API_ENDPOINT 时,我在“myapp.herokuapp.com”之前包含了“https://”,现在它可以工作了。

于 2021-07-29T14:07:58.883 回答