tags: [性能]
    categories: 业务场景解决方案


    如何在不卡住页面的情况下渲染数据,也就是说不能一次性将几万条都渲染出来,而应该一次渲染部分 DOM,那么就可以通过 requestAnimationFrame 来每 16 ms 刷新一次。

    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
    6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
    7. <title>Document</title>
    8. </head>
    9. <body>
    10. <ul>控件</ul>
    11. <script>
    12. setTimeout(() => {
    13. // 插入十万条数据
    14. const total = 100000
    15. // 一次插入 20 条,如果觉得性能不好就减少 const once = 20
    16. // 渲染数据总共需要几次
    17. const loopCount = total / once
    18. let countOfRender = 0
    19. let ul = document.querySelector("ul"); function add() {
    20. // 优化性能,插入不会造成回流
    21. const fragment = document.createDocumentFragment();
    22. for (let i = 0; i < once; i++) {
    23. const li = document.createElement("li");
    24. li.innerText = Math. oor(Math.random() * total);
    25. fragment.appendChild(li);
    26. }
    27. ul.appendChild(fragment);
    28. countOfRender += 1;
    29. loop();
    30. }
    31. function loop() {
    32. if (countOfRender < loopCount) {
    33. window.requestAnimationFrame(add);
    34. }
    35. }
    36. loop();
    37. }, 0);
    38. </script>
    39. </body>
    40. </html>