如何设置Airbrake,使其从Ember应用程序中出现的未处理的
Javascript错误中获取上下文信息?
解决方法
假设你已经包含
Airbrake-js,你可以挂钩Ember的onerror处理程序并推送错误.
Ember.onerror = function(err) { // any ember error
Airbrake.push(err);
//any other error handling
};
Ember.RSVP.configure('onerror',function(err){ // any promise error
Airbrake.push(err);
console.error(e.message);
console.error(e.stack);
//any other generic promise error handling
};
window.onerror = function(err){ // window general errors.
Airbrake.push(err);
//generic error handling that might not be Airbrake related.
};
您可以在airbrake-js GitHub存储库文档中看到发送数据的不同参数的更多选项.