美文网首页
前端错误监控

前端错误监控

作者: 那丶 | 来源:发表于2020-05-19 09:16 被阅读0次

    前端错误的分类:

    1、即使运行错误(js代码错误)

    2、资源加载错误。

    错误的捕获方式

    1、即使运行错误(js代码错误)

    try...catch 

    window.onerror或者window.addEventLisener("error",function(e){})

    2、资源加载错误。

    object.onerror

    performance.getEntries()

    Error事件捕获。window.addEventLisener("error",function(e){},true)

    错误上报的方式

    1、AJAX上报(不推荐使用)

    2、利用Image对象

    即(new Image()).src="http://123"

    相关文章

      网友评论

          本文标题:前端错误监控

          本文链接:https://www.haomeiwen.com/subject/rddvohtx.html