React: net::ERR_CONNECTION_REFUSED

19 浏览
0 Comments

React: net::ERR_CONNECTION_REFUSED

我已经克隆了这个项目https://github.com/LaurenceHo/react-weather-app#webpack-reactjs-and-typescript

我按照所有的步骤正确地操作了,我在这里创建了我的新密钥https://api.windy.com/keys,并将其作为指示放在这里https://github.com/LaurenceHo/react-weather-app/blob/master/src/views/weather-map.tsx

现在我运行服务器,对于这个方法getWeather我得到了这个错误。

我查看了我的网络和控制台,这些是我看到的错误,但我不知道该如何解决它:

enter image description here

enter image description here

这是带有该方法的API:

export const getWeatherByTime = (
  latitude: number,
  longitude: number,
  time: number,
  exclude: string,
  units: string
): Promise => {
  const requestUrl =
    `${CLOUD_FUNCTION_URL}getWeather?lat=${latitude}&lon=${longitude}&time=${time}` +
    `&exclude=${encodeURIComponent(exclude)}&units=${encodeURIComponent(units)}`;
  return fetch(requestUrl)
    .then(checkStatus)
    .then(parseJSON)
    .then((data: any) => data);
};

我该如何找出问题?我该如何解决它?

0