• 회원가입
  • 로그인
  • 구글아이디로 로그인

[api] HTML5 - Server-Sent Event - 서버전송이벤트 (= 서버센트이벤트)

목차
  1. Server-Sent Event 예제 (예: open, message)
  2. Server-Sent Event 정의
  3. Server-Sent Event 종류 (= EventSource Object 종류)

 

Server-Sent Event 예제 (예: open, message)

 

<h1 id="hz"></h1>

<div id="s_time"></div>


<script>

if(typeof(EventSource) !== "undefined") { // Server-Sent Event 지원여부 체크

  var source = new EventSource("/server_time.php");

  source.onopen = function() {

    document.getElementById("hz").innerHTML = "홈짱닷컴 (Homzzang.com) 서버갱신시간";

  };

  

  source.onmessage= function(event) {

    document.getElementById("s_time").innerHTML += event.data + "<br>";

  };


} else {

  document.getElementById("s_time").innerHTML = "서버전송이벤트 지원않는 브라우저는 개나 줘버려.";

}

</script>

 


/server_time.php 소스

 

<?php

header('Content-Type: text/event-stream');

header('Cache-Control: no-cache');


$time = date('r');

echo "data: 서버 시간 : {$time}\n\n";

flush();

?>


 

Server-Sent Event 정의

 

서버가 보낸 이벤트는 웹페이지가 자동으로 업데이트되도록 해줌.

 


 

1.
(예) Facebook/Twitter 업데이트, 주가 업데이트, 뉴스 피드, 스포츠 결과 등

 

2.

IE 제외한 주요 최신 브라우저 모두 지원.

 

 

Server-Sent Event 종류 (= EventSource Object 종류)

 

onopen

서버와의 연결이 열린 경우.

 

onmessage

메시지가 수신 될 때.

 

onerror

오류가 발생했을 때.

 


 


분류 제목
attribute HTML - charset 속성 - 문자셋 지정 (= charset속성 = 차셋속성) ※ 문자인코딩, 언어셋
attribute HTML - checked 속성 ★ - 미리 (체크박스/라디오) 체크 여부 지정 (= checked속성 = …
attribute HTML - cite 속성 - (인용출처/삭제이유/삽입이유) 주소 연결 (= cite속성 = 사이트속성)
attribute HTML - class 속성 ★★★ - 클래스명 선택자 지정 (= class속성 = 클래스속성)
attribute HTML - color 속성 - (HTML5 지원 X) 글자색 지정 (= color속성 = 컬러속성)
attribute HTML - cols 속성 - <textarea> 세로열수(=세로줄수 = 가시너비) 지정 (= cols속성 …
attribute HTML - colspan 속성 ★ - 병합할 가로셀 개수 지정 (= colspan속성 = 콜스팬속성)
attribute HTML - content 속성 ★ - 메타데이터 값 지정 (= content속성 = 콘텐트속성|컨텐트속성)
attribute HTML - contenteditable 속성 - 요소 내용 수정 가능 여부 지정 (= contentedit…
attribute HTML - controls 속성 - (오디오/비디오) 플레이어의 제어창 표시 여부 (= controls속성…
attribute HTML - coords 속성 - 이미지맵 링크영역 좌표 표시 (= coords속성 = 코즈속성/코드스속성/…
attribute HTML - data 속성 - <object> 태그의 리소스 URL 주소 지정 (= data속성 = 데이터속…
attribute HTML - data-* 속성 ★★★ - 특정 (페이지/애플리케이션)의 사용자 데이터 저장 (= data-속…
attribute HTML - datetime 속성 - 날짜시간 지정 (= datetime속성 = 데이트타임속성)
attribute HTML - default 속성 - 기본 재생 트랙 지정 (= default속성 = 디폴트속성)
attribute HTML - defer 속성 ★★★ - 페이지 파싱 완료 후 외부스크립트 실행 (= defer속성 = 디퍼속…
attribute HTML - dir 속성 - 텍스트 출력방향 지정 (= dir속성 = 디르속성|디렉션속성)
attribute HTML - dirname 속성 - input/textarea 요소의 텍스트 방향 지정 (= dirname속…
attribute HTML - disabled 속성 - 요소 비활성화 지정 (= disabled속성 = 디스에이블드속성|디세이…
attribute HTML - download 속성 - 파일 다운로드 지정 (= download속성 = 다운로드속성) ※ 다운…
9/18
목록
찾아주셔서 감사합니다. Since 2012