gpt4 book ai didi

javascript - 如何访问网页中每个资源的性能对象?

转载 作者:数据小太阳 更新时间:2023-10-29 05:58:17 26 4
gpt4 key购买 nike

我可以在 Chrome 开发者工具中看到网页中所有资源的加载时间、从服务器获取特定资源所需的时间以及其他信息。

我想使用 JavaScript 捕获这些统计数据。怎么可能?

有可用的 window.performance 对象,但仅适用于请求的页面,不适用于页面资源。有没有办法访问所有页面资源的性能对象。

最佳答案

您应该能够使用 window.performance.getEntries()获取特定于资源的统计信息:

var resource = window.performance.getEntries()[0];

console.log(resource.entryType); // "resource"
console.log(resource.duration); // 39.00000000430737
console.log(resource.startTime); // 218.0000000007567

来自以上链接的示例:

enter image description here

关于javascript - 如何访问网页中每个资源的性能对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17691889/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com