不知道为什么会收到此错误,因为如果将错误传递给bugsnag控制台,则显然已定义了bugsnag:

react-native - Bugsnag无法读取未定义的 native 通知-LMLPHP

这是我的bugsnag文件:

import { Client } from 'bugsnag-react-native';
import Config from 'react-native-config'

export const bugsnag = new Client(Config.BUGSNAG_KEY);

配置具有正确的API密钥

这是我的错误文件:
import bugsnag from './bugsnag'

    export default function (err) {
      console.log("BUGSNAG ERR", err);
      if (err) {
        if (!err.stack) {
          err = new Error(err)
        }
        bugsnag.notify.apply(bugsnag, [err])
      }
    }

这是我的index.js
// eslint-disable-next-line no-unused-vars
import bugsnag from './app/configs/bugsnag';

我试图遵循bugsnags文档中的所有react native设置,但是显然我缺少一些东西。感谢所有帮助。

最佳答案

问题是我如何导入文件:

自从我用过:
export const bugsnag
我需要使用:
import { bugsnag } from './bugsnag'
基于本文:

https://medium.com/@etherealm/named-export-vs-default-export-in-es6-affb483a0910

10-04 21:54