반응형
- Overview
- http://www.websocket.org/
- 순수 웹 환경에서의 실시간 양방향 통신
- 유사 기술
- Hidden iFrame
- Ajax Polling
- Comet (long-polling)
- Plug-in 기술 의존 제거
- ActiveX, JavaFX, Flash, Silverlight 등
- WebSocket Object
- 생성
- new WebSocket (url, [protocol])
- Attributes
- readyState (read only)
- 0 : Not established
- 1 : Connected, Communication possible
- 2 : Closing
- 3 : Closed
- bufferedAmount (read only)
- Methods
- send(data)
- close()
- Events
- onopen : 서버와 연결 되었을때
- onmessage : 서버로 부터 메시지를 전달 받았을때
- onerror : Error 발생
- onclose : 연결 종료
반응형
'Programming > 웹프로그래밍' 카테고리의 다른 글
[NodeJs] Socket.io를 WebSocket 구현하기. (0) | 2016.03.18 |
---|---|
[NodeJs] Socket.IO란? (0) | 2016.03.18 |
[NodeJs] 외부 모듈 사용하기 (0) | 2016.03.18 |
[NodeJs] Ajax를 이용한 화면 업데이트 (0) | 2016.03.17 |
[NodeJs] Express 프로젝트 시작하기 (MVC Pattern / ejs) (0) | 2016.03.17 |