當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js ClientHttp2Stream 'response'事件用法及代碼示例


事件:'response'

添加於:v8.4.0

當從連接的 HTTP/2 服務器收到此流的響應 HEADERS 幀時,將發出 'response' 事件。使用兩個參數調用偵聽器:包含接收到的 HTTP/2 Headers ObjectObject 和與標頭關聯的標誌。

const http2 = require('node:http2');
const client = http2.connect('https://localhost');
const req = client.request({ ':path': '/' });
req.on('response', (headers, flags) => {
  console.log(headers[':status']);
});

相關用法


注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品  'response'事件。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。