#badjs-report -- 前端异常捕获与上报
$ npm install badjs-report
$ bower install https://github.com/BetterJS/badjs-report.git
$ lego install badjs-report --save
badjs-report 必须在所有类库之前加载并初始化。 但是要在 jquery、seajs、requrejs等类库后调用spyAll()。
BJ_REPORT.init({
id: 1 // 不指定 id 将不上报
});
BJ_REPORT.init({
id: 1, // 上报 id, 不指定 id 将不上报
uin: 123, // 指定用户 id, (默认已经读取 qq uin)
combo: 1, // combo 是否合并上报, 0 关闭, 1 启动(默认)
delay: 1000, // 当 combo 为 true 可用,延迟多少毫秒,合并缓冲区中的上报(默认)
url: "//badjs2.qq.com/badjs", // 指定上报地址
ignore: [/Script error/i], // 忽略某个错误
random: 1, // 抽样上报,1~0 之间数值,1为100%上报(默认 1)
repeat: 1, // 重复上报次数(对于同一个错误超过多少次不上报)
// 避免出现单个用户同一错误上报过多的情况
onReport: function(id, errObj){}, // 当上报的时候回调。 id: 上报的 id, errObj: 错误的对象
ext: {} // 扩展属性,后端做扩展处理属性。例如:存在 msid 就会分发到 monitor
});
BJ_Report 是重写了 window.onerror 进行上报的,无需编写任何捕获错误的代码
BJ_REPORT.report("error msg");
BJ_REPORT.report({
msg: "xx load error", // 错误信息
target: "xxx.js", // 错误的来源js
rowNum: 100, // 错误的行数
colNum: 100, // 错误的列数
});
try{
// something throw error ...
}catch(error){
BJ_REPORT.report(e);
}
##### 延迟上报 ```javascript BJ_REPORT.push("error msg");
BJ_REPORT.push({ msg: "xx load error", // 错误信息 target: "xxx.js", // 错误的来源js rowNum: 100, // 错误的行数 colNum: 100, // 错误的列数 });
BJ_REPORT.report();
当 combo = 1 时候的, 调用 report ,根据缓冲池中的数据一条条上报;<br/>
当 combo = 0 时候的, 会延迟 delay 毫秒,再合并上报
<br/>
##### 可以链式调用
```javascript
BJ_REPORT.init({id: 1}).push("error msg").report("error msg 2");
BJ_REPORT.info("info"); // 用户记录日志
BJ_REPORT.debug("debug"); //可以结合实时上报,跟踪问题; 不存入存储
### 高级用法 >script error 的错误,怎么解决? [#3](BetterJS#3)
由于 BJ_Report 只是重写了onerror 方法而已,而且浏览器的跨域问题不能获得外链 javascript 的错误,所以使用tryJs 进行包裹。
BJ_REPORT.tryJs().spyJquery();
包裹 jquery 的 event.add , event.remove , event.ajax 这几个异步方法。
BJ_REPORT.tryJs().spyModules();
包裹 模块化框架 的 define , require 方法
BJ_REPORT.tryJs().spySystem();
包裹 js 的 setTimeout , setInterval 方法
var customFunction = function (){};
customFunction = BJ_REPORT.tryJs().spyCustom(customFunction );
// 只会包裹 customOne , customTwo
var customObject = { customOne : function (){} , customTwo : function (){} , customVar : 1}
BJ_REPORT.tryJs().spyCustom(customObject );
包裹 自定义的方法或则对象
//自动运行 SpyJquery , SpyModule , SpySystem
BJ_REPORT.tryJs().spyAll();
- 增加去除重复参数
- 修复了 webpack 引入问题
- BUGFIX
- 项目重命名后更新项目路径(注: 之前名字为
report
)
- 合并上报的问题
- 增加sea.use try-catch 处理
- add BJ_ERROR hash
- bugfix
- 增加info 和 debug 接口
- report 增加对 error 对象处理
- 处理 [Object event] 问题
- bugfix
- 增加抽样参数 random
- seajs 兼容的BUG修复
- 增加 ext 属性,用户可以自己定义里面的值上报
- 增加对seajs 模块化的包裹
- 增加对IE下面的错误的上报
- 修复异步环境下抛给浏览器的BUG也会上报,
- 修复ignore 数组判断的迭代的问题
- 修复 spy 插件增加在 异步环境中,抛出异常捕获后,再抛给浏览器
- 修复 增加在异步环境中,抛出异常,捕获后,将错误信息输出
- 增加onReport 回调
- 修复说明文档
- 修复 uin 的正则
- 增加 spy 插件
- 功能上线