关于http中connection事件
发布于 2年前 作者 beiyio 726 次浏览

看文档里有这么一句描述: Event: ‘connection’ 事件:’connection’ function (stream) { }

When a new TCP stream is established. stream is an object of type net.Stream. Usually users will not want to access this event. The stream can also be accessed at request.connection.

当一个新的TCP流建立后触发此事件。stream是一个net.Stream类型的对象,通常用户不会使用这个事件。参数stream也可以在request.connection中获得。

看文字的意思就是说有一个连接就会进入connection事件,可是在代码里应该如何写呢,不是很明白。哪个高人能给贴个列子

1 回复

基于事件的,使用http.on('connection');来监听

回到顶部