wrong-report
v1.1.1
Published
异常监控与图片上报
Downloads
17
Readme
wrong-report
监控前端js报错、静态资源加载、promise的错误信息以及FP、FCP、LCP数据,并通过图片上报错误信息(目前还在测试优化阶段)。
JS报错,
静态资源加载报错,
FP、FCP、LCP,
安装//Install
npm install wrong-report --save
ES6
import {initReporting} from 'wrong-report'
//使用示例:
initReporting("http://localhost:8080/error")//报错信息提交后台的接口(自己测试的)
//或者
initReporting({
url:"http://localhost:8080/error",
isSupportObserve:true,//是否开启FP、FCP、LCP监控(默认开启)
isSupportJS:true,//是否开启js报错监控(默认开启)
})//报错信息提交后台的接口(自己测试的)
上报示例
//js上报
new Image().src =
`${this.url}?errorMsg=${encodeURIComponent(errorMsg)}&errorURL=${encodeURIComponent(errorURL)}&errorType=${encodeURIComponent(errorType)}&message=${encodeURIComponent(message)}&locationHref=${encodeURIComponent(location.href)}`;
//FP、FCP、LCP上报
new Image().src =
`${this.url}?entryType=${entryType}&name=${name}&time=${startTime}&locationHref=${encodeURIComponent(location.href)}`