设计一个前端统计SDK

前端统计的范围

- 访问量 PV

- 自定义事件(如统计一个按钮被点击了多少次)

- 性能

- 错误

统计数据的流程 (只做前端 SDK ,但是要了解全局)

- 前端发送统计数据给服务端

- 服务端接受,并处理统计数据

- 查看统计结果

代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>统计 SDK</title>
</head>
<body>
    <p>统计 SDK</p>

    <script>
        const PV_URL_SET = new Set()

        class MyStatistic {
            constructor(productId) {
                this.productId = productId

            

猜你喜欢

转载自blog.csdn.net/m0_38066007/article/details/125008993