-
Notifications
You must be signed in to change notification settings - Fork 63
FE Monitor 使用手册
MriLiuJY edited this page Jun 25, 2019
·
6 revisions
属性 | 参数 | 默认值 | 可选值 | 说明 |
---|---|---|---|---|
method | String | post | POST,GET | 埋点上报请求方法 |
url | String | - | - | 埋点上报url地址 |
id | String | - | - | 标识当前用户 |
<script>
var config = {
// your config
};
var script = document.createElement("script");
script.crossOrigin = "anonymous"; // 注意不加这个 crossOrigin 会造成第三方引入的资源无法收集页面报错详情
script.src = `https://test.com/monitor.0.0.1-beta.js`;
document.body.appendChild(script);
script.addEventListener('load', (e) => {
initMonitor(config);
});
</script>