PerformanceResourceTiming: nextHopProtocol 属性
nextHopProtocol
只读属性是一个字符串,表示用于获取资源的网络协议,由ALPN 协议 ID (RFC7301) 标识。
当使用代理时,如果建立了隧道连接,则此属性返回隧道协议的 ALPN 协议 ID。否则,此属性返回到代理的第一跳的 ALPN 协议 ID。
值
nextHopProtocol
属性可以具有以下值
- 一个字符串,表示用于获取资源的网络协议,由ALPN 协议 ID (RFC7301) 标识。典型值为
"http/0.9"
"http/1.0"
"http/1.1"
"h2"
"h2c"
"h3"
- 如果资源是跨源请求且未使用
Timing-Allow-Origin
HTTP 响应标头,则为空字符串。
示例
记录未使用 HTTP/2 或 HTTP/3 的资源
nextHopProtocol
属性可用于查看未使用 HTTP/2 或 HTTP/3 协议的资源。
使用PerformanceObserver
的示例,它会在浏览器性能时间轴中记录新的 resource
性能条目时发出通知。使用 buffered
选项可以访问观察器创建之前存在的条目。
js
const observer = new PerformanceObserver((list) => {
list.getEntries().forEach((entry) => {
const protocol = entry.nextHopProtocol;
if (protocol && !(protocol === "h2" || protocol === "h3")) {
console.log(`${entry.name} uses ${protocol}.`);
}
});
});
observer.observe({ type: "resource", buffered: true });
使用Performance.getEntriesByType()
的示例,它仅显示在您调用此方法时浏览器性能时间轴中存在的 resource
性能条目
js
const resources = performance.getEntriesByType("resource");
resources.forEach((entry) => {
const protocol = entry.nextHopProtocol;
if (protocol && !(protocol === "h2" || protocol === "h3")) {
console.log(`${entry.name} uses ${protocol}.`);
}
});
跨源网络协议信息
如果 nextHopProtocol
属性的值为空字符串,则该资源可能是跨源请求。要公开跨源网络协议信息,需要设置Timing-Allow-Origin
HTTP 响应标头。
例如,要允许 https://mdn.org.cn
查看网络协议信息,跨源资源应发送
http
Timing-Allow-Origin: https://mdn.org.cn
规范
规范 |
---|
资源定时 # dom-performanceresourcetiming-nexthopprotocol |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。