可以通过wsCtx对象的close方法关闭连接。
server.ws("/test", (ctx) => { //给客户端发送消息 ctx.send("hello"); //关闭连接 ctx.close(); });
← send