如何处理网络请求失败错误?

时间:2019-02-12 11:51:07

标签: javascript reactjs react-native fetch

我的问题与React Native fetch() Network Request Failed不同,我没有为http或https苦苦挣扎,如果由于互联网连接,API错误而导致请求失败,我只是想向用户提供一个不错的错误提示,等等,而不是响应本机错误。

我有一个表单,想将其发送到服务器并获得响应,所以我这样写:

submitForm = async () => {
  fetch("www.somewhere.com", {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    body: JSON.stringify(some_data)
  })
  .then((response) => response.json())
  .then((responseJson) => {
     // do something
  })
  .catch((error) => {
      this.setState({server_error: "request failed try again."});
  });
};

但是我的捕获似乎无法正常工作,因为如果请求失败,我会从本机反应中得到如下错误: enter image description here 在生产中,它只是跳出了应用程序,我该如何避免这种情况?

1 个答案:

答案 0 :(得分:2)

不知道这是否可以解决您的问题,但是,即使响应为404,您的提取代码也会尝试创建JSON。

您还需要在创建JSON之前检查响应是否正常

submitForm = async () => {
  fetch("www.somewhere.com", {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    body: JSON.stringify(some_data)
  })
  .then((response) => {
        if(response.statusText == "OK" && response.status >= 200 && response.status < 300) {
            return response.json()
        } else {
            throw new Error("Server can't be reached!")
        }
    })
  .then((json) => {
     console.log("hooray! we have json!")
     console.log(json)
  })
  .catch((error) => {
      console.log("error fetching data")
      console.log(error)
      console.log(error.message) // Server can't be reached!
      this.setState({server_error: "request failed try again."});
  });
};