在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:un-nmps开源软件地址:https://gitee.com/zhuzhaofeng/un-nmps开源软件介绍:前端监控
环境
文件夹说明
<!DOCTYPE html><html lang="zh-CN-Hans"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>前端监控</title> <script type="text/javascript" src="un-watch.min.js"></script> <script> unWatch.init({ time: 10000, callback: (data) => { // 回调函数里面执行异常上报 new Image().src = 'http://localhost:3000/report?' + JSON.stringify(data); } }); </script> <!-- 没有此文件 测试上报 --> <link rel="stylesheet" href="./style.css"> <!-- 只是为了测试 添加 S --> <link rel="stylesheet" href="https://cdn.bootcss.com/normalize/8.0.1/normalize.css"> <link rel="stylesheet" href="https://cdn.bootcss.com/minireset.css/0.0.2/minireset.css"> <link rel="stylesheet" href="https://cdn.bootcss.com/twitter-bootstrap/4.3.1/css/bootstrap.css"> <!-- 只是为了测试 添加 E --> <link rel="shortcut icon" href="favicon.ico"></head><body> <h1>SayHi()</h1> <!-- 只是为了测试 添加 S --> <script src="https://cdn.bootcss.com/socket.io/2.2.0/socket.io.js"></script> <script src="https://cdn.bootcss.com/echarts/4.2.1-rc1/echarts.min.js"></script> <script src="https://cdn.bootcss.com/vue/2.6.10/vue.js"></script> <script src="https://unpkg.com/[email protected]/dist/axios.min.js"></script> <!-- 只是为了测试 添加 E --> <!-- 不存在此图片 只是测试异常监听 --> <img src="./example.png" alt=""> <!-- 不存在此文件 只是测试异常监听 --> <script src="./example.js"></script> <script> // 测试 setTimeout(() => { let el = document.createElement('img'); // 不存在此图片 只是测试异常监听 el.setAttribute('src', './example.png'); document.body.append(el); // 不存在此接口 只是测试异常监听 axios.get('http://localhost:3000/test').then(res => { console.log(res) }) }, 5000) // 测试运行异常上报 console.log(test) </script></body></html> |
请发表评论