javascript – 正确的方法来捕获React中的获取错误?

前端之家收集整理的这篇文章主要介绍了javascript – 正确的方法来捕获React中的获取错误?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的反应组件,如下所示:
class Test extends React.Component {
  componentDidMount() {
    fetch('/some-url-here')
      .then((data) => {
        this.setState({ data });
      })
      .catch(() => {
        alert('Failed to fetch');
      });
  }

  render() {
    // render the data here
  }
}

这个问题是catch不只是捕获fetch错误.它还捕获渲染中抛出的任何异常!创建一个获取某些数据并处理获取错误的简单组件的正确方法是什么?

@R_301_323@

class Test extends React.Component {
  componentDidMount() {
    fetch('/some-url-here')
      .then((data) => {
        this.setState({ data });
      },(error) => {
        if (error) {
          // handle error here
        }
      });
  }

  render() {
    // render the data here
  }
}

如果使用catch而不是第二个回调,则在setState方法期间可能发生的任何错误都将保持未处理状态.因此,您可以以自己的方式捕获渲染方法错误.
有关更多信息,请阅读Dan Abramov对此推文的阅读.

Dan’s Tweet

原文链接:https://www.f2er.com/js/240887.html

猜你在找的JavaScript相关文章