This page was translated from English by the community.Learn more and join the MDN Web Docs community.
WebSocket.readyState
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015년 7월.
WebSocket.readyState 읽기 전용 속성은WebSocket 연결의 현재 상태를 반환합니다.
In this article
값
아래의unsigned short 값 중 하나입니다.
| 값 | 상태 | 설명 |
|---|---|---|
0 | CONNECTING | 소켓이 생성됐으나 연결은 아직 개방되지 않았습니다. |
1 | OPEN | 연결이 개방되어 통신할 수 있습니다. |
2 | CLOSING | 연결을 닫는 중입니다. |
3 | CLOSED | 연결이 닫혔거나, 개방할 수 없었습니다. |
명세
| Specification |
|---|
| WebSockets> # ref-for-dom-websocket-readystate①> |