Bugsnag无法读取未定义的本机通知

时间:2019-05-29 20:48:03

标签: react-native error-handling undefined bugsnag

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

enter image description here

这是我的bugsnag文件:

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

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

config具有正确的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设置,但是显然我缺少一些东西。感谢所有帮助。

1 个答案:

答案 0 :(得分:0)

问题是我如何导入文件:

自从我开始使用

export const bugsnag

我需要使用:

import { bugsnag } from './bugsnag'

基于本文:

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