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.
有没有办法通过使用 ajax、xmlHttpRequest 或其他方法使用 javascipt 从客户端检查数据包丢失?非常感谢您的帮助。
HTTP基于TCP,它保证数据的传递。服务器和客户端应该意识到会导致某些数据丢失的问题。TCP 层将根据需要重新传输数据,直到完成。
丢包和乱序交付在互联网上并不少见,因为没有规定路由器必须转发所有数据包,但 TCP 会自动纠正这些问题。
不幸的是,使用 javascript 对此您无能为力。