前端的错误监控

Posted yiyi17

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端的错误监控相关的知识,希望对你有一定的参考价值。

1、监听代码错误

    <script>
     window.addEventListener(‘error‘, function (e) { console.log(e,e.lineno) });
    </script>

  

  window.onerror = function (e,s,l,c,error) {
       console.log(e,s,l,c,error)
  }

 

2、 跨域代码监控

跨域之后 window.onerror根本捕获不到正确的异常信息,而是统一返回一个 Script error

解决方案:对 script标签增加一个 crossorigin=”anonymous,并且服务器添加 Access-Control-Allow-Origin

<script src="http://**.**.**:9002/index.js" crossorigin=”anonymous”></script>

  

3、vue项目的错误监控

Vue.config.errorHandler = function (err, vm, info) {
	// handle error
	// `info` 是 Vue 特定的错误信息,比如错误所在的生命周期钩子
	// 只在 2.2.0+ 可用
	console.log(err.stack.split(‘
‘)[1])
	console.log(vm)
	console.log(info)
}

4、react

在 React中,可以使用 ErrorBoundary组件包括业务组件的方式进行异常捕获,配合 React 16.0+新出的 componentDidCatch API,可以实现统一的异常捕获和日志上报。

 

class ErrorBoundary extends React.Component {
  constructor(props) {
    super(props);
    this.state = { hasError: false };
  }

  componentDidCatch(error, info) {
    // Display fallback UI
    this.setState({ hasError: true });
    // You can also log the error to an error reporting service
    logErrorToMyService(error, info);
  }

  render() {
    if (this.state.hasError) {
      // You can render any custom fallback UI
      return <h1>Something went wrong.</h1>;
    }
    return this.props.children;
  }
}

使用方式如下:

<ErrorBoundary>
  <MyWidget />
</ErrorBoundary>

  

 

 

 

 

参考文章https://mp.weixin.qq.com/s/Jgq6QmzvGCTCOKXIhLNayw

以上是关于前端的错误监控的主要内容,如果未能解决你的问题,请参考以下文章

前端错误监控的简单设计与实现

前端错误监控的简单设计与实现

前端错误监控原理与实战

搭建前端监控系统JS错误日志收集篇

关于前端错误监控日志系统

400错误 是前端的问题 还是服务器