我希望编写一个前端监控实用程序来记录API调用的服务器响应时间和内容下载时间。
使用XHR,readyState
3(LOADING
)表示开始下载。
如何从fetch()
API获取类似信息?
答案 0 :(得分:1)
您可以使用PerformanceObserver()
Count console.log objects和Performance
。您也可以使用EventSource
查看How to read and echo file size of uploaded file being written at server in real time without blocking at both server and client?