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


Node.js ClientHttp2Session 'origin'事件用法及代碼示例


事件:'origin'

添加於:v10.12.0

參數

每當客戶端接收到 ORIGIN 幀時,就會發出 'origin' 事件。該事件通過origin 字符串數組發出。 http2session.originSet 將更新以包含收到的來源。

const http2 = require('node:http2');
const client = http2.connect('https://example.org');

client.on('origin', (origins) => {
  for (let n = 0; n < origins.length; n++)
    console.log(origins[n]);
});

'origin' 事件僅在使用安全 TLS 連接時發出。

相關用法


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