PerformanceResourceTiming: fetchStart 属性

基线 广泛可用

此功能已完善,可在许多设备和浏览器版本中使用。它自以下时间起在浏览器中可用 2017 年 9 月.

fetchStart 只读属性表示在浏览器开始获取资源之前的 时间戳

如果存在 HTTP 重定向,则该属性会返回用户代理开始获取重定向中最终资源之前的时刻。

与许多其他 PerformanceResourceTiming 属性不同,fetchStart 属性可用于跨源请求,而无需 Timing-Allow-Origin HTTP 响应标头。

浏览器开始获取资源之前的 DOMHighResTimeStamp

示例

测量获取时间(不包括重定向)

fetchStartresponseEnd 属性可用于测量获取最终资源(不包括重定向)的总时间。如果您希望包含重定向,则获取的总时间在 duration 属性中提供。

js
const timeToFetch = entry.responseEnd - entry.fetchStart;

使用 PerformanceObserver 的示例,该示例会在浏览器性能时间轴中记录新的 resource 性能条目时发出通知。使用 buffered 选项访问观察者创建之前的条目。

js
const observer = new PerformanceObserver((list) => {
  list.getEntries().forEach((entry) => {
    const timeToFetch = entry.responseEnd - entry.fetchStart;
    if (timeToFetch > 0) {
      console.log(`${entry.name}: Time to fetch: ${timeToFetch}ms`);
    }
  });
});

observer.observe({ type: "resource", buffered: true });

使用 Performance.getEntriesByType() 的示例,该示例仅显示在您调用此方法时浏览器性能时间轴中存在的 resource 性能条目

js
const resources = performance.getEntriesByType("resource");
resources.forEach((entry) => {
  const timeToFetch = entry.responseEnd - entry.fetchStart;
  if (timeToFetch > 0) {
    console.log(`${entry.name}: Time to fetch: ${timeToFetch}ms`);
  }
});

规范

规范
资源计时
# dom-performanceresourcetiming-fetchstart

浏览器兼容性

BCD 表仅在启用 JavaScript 的浏览器中加载。