当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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'事件。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。