前端开发攻略---使用AJAX监控网络请求进度

1、XHR实现

html 复制代码
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body>
    <progress value="0" max="0"></progress>
    <script>
      const progress = document.querySelector('progress')
      function readFile2() {
        const xhr = new XMLHttpRequest()
        xhr.open('GET', 'http://127.0.0.1:8888/ttt.txt')

        xhr.addEventListener('progress', e => {
          // e.loaded是当前加载大小 e.total是总大小
          console.log(e.loaded, e.total)
          progress.setAttribute('value', e.loaded)
          progress.setAttribute('max', e.total)
        })

        // xhr.onload = function () {
        //   if (xhr.status === 200) {
        //     console.log('响应内容:', xhr.responseText)
        //   } else {
        //     console.error('请求失败,状态码:', xhr.status)
        //   }
        // }
        xhr.send() // 发送请求
      }
      readFile2()
    </script>
  </body>
</html>

2、Fetch实现

html 复制代码
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body>
    <progress value="0" max="0"></progress>
    <script src="https://cdn.staticfile.org/axios/0.18.0/axios.min.js"></script>
    <script>
      const progress = document.querySelector('progress')
      async function readFile() {
        const url = 'http://127.0.0.1:8888/ttt.txt'
        const resp = await fetch(url)
        // 从响应头中获取数据总大小
        const total = resp.headers.get('content-length')
        // 更新进度条
        progress.setAttribute('max', total)
        // 从响应体中获取一个读取器(reader),允许你逐块读取响应的数据流。
        const reader = resp.body.getReader()
        // 创建一个 TextDecoder 实例,用于将读取到的字节数据转换为文本字符串。
        const decoder = new TextDecoder()
        // 用来存储当前加载的大小
        let loaded = 0
        while (1) {
          // 使用 reader.read() 异步读取下一块数据。value 是读取到的字节,done 是一个布尔值,指示是否已读取到流的末尾。
          const { value, done } = await reader.read()
          if (done) break
          loaded += value.length
          // 更新进度条
          progress.setAttribute('value', loaded)
          // 将读取到的字节(value)解码为字符串格式。
          // const text = decoder.decode(value)
        }
      }
      readFile()
    </script>
  </body>
</html>
相关推荐
黄焖鸡能干四碗9 分钟前
企业元数据梳理和元数据管理方案(PPT方案)
大数据·运维·网络·分布式·spark
恋恋风尘hhh10 分钟前
滑动验证码前端安全研究:以顶象(dingxiang-inc)为例
前端·安全
萑澈6 小时前
Windows 7 运行 Electron 安装包报“不是有效的 Win32 应用程序”怎么办
javascript·windows·electron
克莱因3587 小时前
思科 Cisco 标准ACL
网络·路由
W.A委员会7 小时前
JS原型链详解
开发语言·javascript·原型模式
懂懂tty7 小时前
React状态更新流程
前端·react.js
小码哥_常7 小时前
告别繁琐!手把手教你封装超实用Android原生Adapter基类
前端
她说彩礼65万7 小时前
C# 实现简单的日志打印
开发语言·javascript·c#
skywalk81638 小时前
pytest测试的时候这是什么意思?Migrating <class ‘kotti.resources.File‘>
前端·python
资深数据库专家8 小时前
总账EBS 应用服务器1 的监控分析
java·网络·数据库