在socket.io中发私信其实就是定点对某个特定的socket.id发消息。
下面这个示例有三个一样的客户端, 客户端1发私信给客户端2,客户端2发私信给客户端3, 客户端3发私信给客户端1.
下面是三个客户端的html, 取之于官方范例:
<!doctype html>
<html>
<head>
<title>Socket.IO chat</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font: 13px Helvetica, Arial;
}
form {
background: #310707;
padding: 3px;
position: fixed;
bottom: 0;
width: 100%;
}
form input {