javascript – PerformanceTiming.responseStart是指向HTML还是标题开始?

前端之家收集整理的这篇文章主要介绍了javascript – PerformanceTiming.responseStart是指向HTML还是标题开始?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个关于 PerformanceTiming.responseStart的问题.

是时候将标题的第一个字节转换为HTML的第一个字节了吗?在某些项目中,这个时间可能非常不同. E. g.使用渐进式页面渲染时.

解决方法

[…] must return the time immediately after the user agent receives the first byte of the response from the server

http://www.w3.org/TR/2012/REC-navigation-timing-20121217/#dom-performancetiming-responsestart

响应是包括HTTP-Header在内的所有内容,甚至在HTML-Head之前.这是第一次在网络套接字上读取数据的时刻.

这是一个关于它的neet小动画和解释页面https://varvy.com/performance/responsestart.html

When a resource is retrieved via the network (rather than the application cache) responseStart represents part of the HTTP request / response timeline.

在浏览器网络工具F12中的这个时间点:

原文链接:https://www.f2er.com/js/156979.html

猜你在找的JavaScript相关文章