前端开发攻略---使用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>
相关推荐
一斤代码1 小时前
vue3 下载图片(标签内容可转图)
前端·javascript·vue
中微子1 小时前
React Router 源码深度剖析解决面试中的深层次问题
前端·react.js
光影少年1 小时前
从前端转go开发的学习路线
前端·学习·golang
中微子2 小时前
React Router 面试指南:从基础到实战
前端·react.js·前端框架
3Katrina2 小时前
深入理解 useLayoutEffect:解决 UI "闪烁"问题的利器
前端·javascript·面试
前端_学习之路3 小时前
React--Fiber 架构
前端·react.js·架构
coderlin_3 小时前
BI布局拖拽 (1) 深入react-gird-layout源码
android·javascript·react.js
伍哥的传说3 小时前
React 实现五子棋人机对战小游戏
前端·javascript·react.js·前端框架·node.js·ecmascript·js
古希腊数通小白(ip在学)3 小时前
stp拓扑变化分类
运维·服务器·网络·智能路由器
qq_424409193 小时前
uniapp的app项目,某个页面长时间无操作,返回首页
前端·vue.js·uni-app