事件:'upgrade'
添加於:v0.1.94
參數
response<http.IncomingMessage>socket<stream.Duplex>head<Buffer>
每次服務器響應升級請求時發出。如果未偵聽此事件且響應狀態代碼為 101 Switching Protocols,則接收到升級標頭的客戶端將關閉其連接。
除非用戶指定 <net.Socket> 以外的套接字類型,否則此事件保證會傳遞 <net.Socket> 類的實例,該類是 <stream.Duplex> 的子類。
演示如何偵聽 'upgrade' 事件的客戶端服務器對。
const http = require('node:http');
// Create an HTTP server
const server = http.createServer((req, res) => {
  res.writeHead(200, { 'Content-Type': 'text/plain' });
  res.end('okay');
});
server.on('upgrade', (req, socket, head) => {
  socket.write('HTTP/1.1 101 Web Socket Protocol Handshake\r\n' +
               'Upgrade: WebSocket\r\n' +
               'Connection: Upgrade\r\n' +
               '\r\n');
  socket.pipe(socket); // echo back
});
// Now that server is running
server.listen(1337, '127.0.0.1', () => {
  // make a request
  const options = {
    port: 1337,
    host: '127.0.0.1',
    headers: {
      'Connection': 'Upgrade',
      'Upgrade': 'websocket'
    }
  };
  const req = http.request(options);
  req.end();
  req.on('upgrade', (res, socket, upgradeHead) => {
    console.log('got upgraded!');
    socket.end();
    process.exit(0);
  });
});
相關用法
- Node.js stream.Writable 'unpipe'事件用法及代碼示例
 - Node.js proces 'uncaughtException'事件用法及代碼示例
 - Node.js proces 'uncaughtExceptionMonitor'事件用法及代碼示例
 - Node.js proces 'unhandledRejection'事件用法及代碼示例
 - Node.js tls.Server 'keylog'事件用法及代碼示例
 - Node.js http.Server 'clientError'事件用法及代碼示例
 - Node.js cluste 'disconnect'事件用法及代碼示例
 - Node.js proces 'exit'事件用法及代碼示例
 - Node.js stream.Writable 'pipe'事件用法及代碼示例
 - Node.js stream.Readable 'end'事件用法及代碼示例
 - Node.js cluste 'fork'事件用法及代碼示例
 - Node.js Http2Session 'remoteSettings'事件用法及代碼示例
 - Node.js Worker 'listening'事件用法及代碼示例
 - Node.js tls.Server 'resumeSession'事件用法及代碼示例
 - Node.js InterfaceConstructor 'pause'事件用法及代碼示例
 - Node.js fs.FSWatcher 'change'事件用法及代碼示例
 - Node.js stream.Readable 'data'事件用法及代碼示例
 - Node.js http.ClientRequest 'connect'事件用法及代碼示例
 - Node.js Http2Session 'localSettings'事件用法及代碼示例
 - Node.js REPLServer 'exit'事件用法及代碼示例
 - Node.js cluste 'online'事件用法及代碼示例
 - Node.js tls.TLSSocket 'session'事件用法及代碼示例
 - Node.js Worker 'exit'事件用法及代碼示例
 - Node.js cluste 'exit'事件用法及代碼示例
 - Node.js Http2Stream 'trailers'事件用法及代碼示例
 
注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 'upgrade'事件。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。
