如何使 React 创建应用程序生产错误边界映射到源代码

Jua*_*ano 7 reactjs react-create-app

我正在使用错误边界组件来捕获反应错误并且它工作正常。

我的问题是,在生产应用程序中,日志记录是无用的,因为组件堆栈如下所示:

\n    in t\n    in t\n   in t\n    in t\n    in t\n    in div\n    in t\n    in u\n    in n\n    in t\n    in t
Run Code Online (Sandbox Code Playgroud)

而在开发环境中,组件堆栈更有用:

in ErrorPage (created by Route)\n    in Route (at Routes.js:60)\n    in Switch (at Routes.js:46)\n    in Router (created by BrowserRouter)\n    in BrowserRouter (at Routes.js:45)\n    in div (at Routes.js:43)\n    in ThemeProvider (at theme.js:1262)\n    in Theme (at Routes.js:42)\n    in Provider (at Routes.js:41)\n    in ErrorBoundary (at Routes.js:40)\n    in Routes (at index.js:12)
Run Code Online (Sandbox Code Playgroud)

消息也是如此。在生产中,我们得到:

t.value (http://localhost:3333/static/js/main.5a3e606e.js:1:680858
Run Code Online (Sandbox Code Playgroud)

在开发时:

Uncaught TypeError: Person is not a constructor
at ErrorPage._this.click2 (ErrorPage.js:12)
Run Code Online (Sandbox Code Playgroud)

有没有办法使反应错误映射到源代码并使日志记录在生产中实际可用?

更新:我正在使用一个名为http://js.jsnlog.com/的库来处理日志并实际捕获所有内容(甚至事件处理程序)。这就是 Boundary 组件的样子https://pastebin.com/aBFtD7DB。问题不在于捕获错误,而是在生产中它们是无用的。

Jua*_*ano 5

我使用库https://www.stacktracejs.com/找到了解决方案。

StackTrace.report() 方法将获取地图并为您提供所需的未缩小信息!

所以现在我的 React Boundary 看起来像这样。我仍然使用 window.onerror 来确保我捕获了所有内容。

首先,确保将stacktrace-gps和添加stacktrace-js到您的 package.json

import React, { Component } from "react";
import StackTrace from "stacktrace-js";

window.onerror = function(msg, file, line, col, error) {
  StackTrace.fromError(error).then(err => {
    StackTrace.report(
      err,
      `//${window.location.hostname}:${process.env.REACT_APP_LOGGER_PORT || 3334}/jsnlog.logger`,
      {
        type: "window.onerror",
        url: window.location.href,
        userId: window.userId,
        agent: window.navigator.userAgent,
        date: new Date(),
        msg: msg
      }
    );
  });
};

class ErrorBoundary extends Component {
  constructor(props) {
    super(props);
    this.state = { error: null };
  }

  componentDidCatch(error, errorInfo) {
    this.setState({ error });
    StackTrace.fromError(error).then(err => {
      StackTrace.report(
        err,
        `//${window.location.hostname}:${process.env.REACT_APP_LOGGER_PORT || 3334}/jsnlog.logger`,
        {
          type: "React boundary",
          url: window.location.href,
          userId: window.userId,
          agent: window.navigator.userAgent,
          date: new Date(),
          msg: error.toString()
        }
      );
    });
  }

  render() {
    if (this.state.error) {
      //render fallback UI
      return (
        <div className="snap text-center">
          <p>We're sorry — something's gone wrong.</p>
          <p>Our team has been notified</p>
        </div>
      );
    } else {
      //when there's not an error, render children untouched
      return this.props.children;
    }
  }
}

export default ErrorBoundary;
Run Code Online (Sandbox Code Playgroud)

  • 我想我的问题是我没有构建源映射。现在我已经做到了,而且效果很好!谢谢! (2认同)