Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个项目,我需要使用Websocket与服务器交换数据
和
我想知道 Websocket 中ping 和 pong的用途是什么,它们是什么?
谢谢
ping 和 pong 用于检查 websocket 连接。如果客户端向服务器发送 ping 并且服务器没有以 pong 响应,则 websocket 将断开连接。它还用于检查服务器和客户端之间的数据交换速度。