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

[AJAX] JS - AJAX - Server Response (서버응답) - 콜백함수 사용 예제

 

XMLHttpRequest 객체 속성

 

readyState속성은 XMLHttpRequest 객체의 요청 접수 상태를 보유하고 있음.
이 onreadystatechange속성은 readyState가 변경될 때 실행할 함수를 정의함.

※ status속성과 statusText속성은 XMLHttpRequest 객체의 요청 처리 상태 보유

https://homzzang.com/b/js-80

 


 

onreadystatechange
readyState 속성 변경될 때 호출할 함수 정의.
readyState 상태가 변경 (1~4)될 때마다 호출됨. (즉, 4차례 촉발)

readyState
XMLHttpRequest 상태 표시 (= 요청 접수 상태)

0 : 요청이 초기화 안 된 상태.

1 : 서버 연결 설정된 상태

2 : 요청 접수된 상태

3 : 요청 처리 중 상태

4 : 요청 완료되고 응답 준비된 상태

 

responseText 

응답 데이터를 문자열로 반환.

 

responseXML 

응답 데이터를 XML 데이터로 반환.

 

status 

요청의 상태 번호 반환. (= 요청 처리 상태)

200 : "OK (통신성공 상태)"

403 : "Forbidden (접근금지 상태)"

404 : "Not Found (찾을 수 없음)"

더 자세한 정보는 아래 좌표 참고

https://www.w3schools.com/tags/ref_httpmessages.asp

 

statusText
상태 텍스트 (예 : "OK" 또는 "Not Found") 반환.

 


[응답 준비 상태]


readyState==4이고 status == 200 일 때, 응답 준비.
즉,

if (this.readyState == 4 && this.status == 200) {

 


[예제]

b.php 

<div id="demo">

<button type="button" onclick="hz()">아작스 배우기 좋은 사이트?</button>

</div>


<script>

function hz() {

  var xhttp = new XMLHttpRequest();

  xhttp.onreadystatechange = function() {

    if (this.readyState == 4 && this.status == 200) {

      document.getElementById("demo").innerHTML =

      this.responseText;

    }

  };

  xhttp.open("GET", "a.php", true);

  xhttp.send();

}

</script>

 

 

a.php 

<h1>홈짱닷컴 소개  Homzzang.com</h1>

<p>HTML - 기본틀</p>

<p>CSS - 디자인</p>

<p>JS - 동작기능</p>

<p>요청 방식 : <?php echo $_SERVER['REQUEST_METHOD']?> 방식</p>

<p>요청 시간 : <?php echo date("Y:m:d h:i:s", $_SERVER['REQUEST_TIME'])?></p>


 

 

콜백함수 사용 

 

1.
콜백함수는 다른 함수의 매개변수로 사용되는 함수를 의미.

 

2.

웹사이트에서 하나 이상의 AJAX 작업을 해야 하는 경우,
XMLHttpRequest 객체를 처리할 함수 하나와
각 AJAX 작업에 대한 하나의 콜백함수를 생성해야 함.

 

 

hz("url-1", aaa);

hz("url-2", bbb);


function hz(url, cFunction) {

  var xhttp;

  xhttp = new XMLHttpRequest();

  xhttp.onreadystatechange = function() {

    if (this.readyState == 4 && this.status == 200) {

      cFunction(this);

    }

  };

  xhttp.open("GET", url, true);

  xhttp.send();

}


function aaa(xhttp) {

  // 액션 코드

function bbb(xhttp) {

  // 액션 코드

}

 


b.php

<div id="demo">

<button type="button" onclick="hz('a.php', aaa)">아작스 배우기 좋은 사이트?

</button>

</div>


<script>

function hz(url, cFunction) {

  var xhttp;

  xhttp=new XMLHttpRequest();

  xhttp.onreadystatechange = function() {

    if (this.readyState == 4 && this.status == 200) {

      cFunction(this);

    }

  };

  xhttp.open("GET", url, true);

  xhttp.send();

}

function aaa(xhttp) {

  document.getElementById("demo").innerHTML = xhttp.responseText;

}

</script>

 


a.php

<h1>홈짱닷컴 소개  Homzzang.com</h1>

<p>HTML - 기본틀</p>

<p>CSS - 디자인</p>

<p>JS - 동작기능</p>

<p>요청 방식 : <?php echo $_SERVER['REQUEST_METHOD']?> 방식</p>

<p>요청 시간 : <?php echo date("Y:m:d h:i:s", $_SERVER['REQUEST_TIME'])?></p>


 

 

서버 응답 속성 

 

responseText 

응답 데이터를 문자열로 얻기

 

responseXML 

응답 데이터를 XML 데이터로 얻기

 

 

 

서버 응답 메서드

 

getResponseHeader () 
서버 자원의 특정 헤더 정보를 반환.

 

getAllResponseHeaders () 
서버 자원의 모든 헤더 정보를 반환.

 

 

 

responseText 속성

 

서버 응답을 JS 문자열로 반환

 


 

<div id="demo">

<button type="button" onclick="hz()">코딩 배우기 좋은 곳?</button>

</div>


<script>

function hz() {

  var xhttp = new XMLHttpRequest();

  xhttp.onreadystatechange = function() {

    if (this.readyState == 4 && this.status == 200) {

      document.getElementById("demo").innerHTML =

      this.responseText;

    }

  };

  xhttp.open("GET", "a.php", true);

  xhttp.send();

}

</script>



 

responseXML 속성

 

XMLHttpRequest 객체는 XML 파서를 내장
이 responseXML 속성은 서버 응답을 XML DOM 객체로 반환.

이 속성을 사용하면 응답을 XML DOM 객체로 파싱 가능.

 


b.php

<p id="demo"></p>

 

<script>

var xhttp, xmlDoc, txt, x, i;

xhttp = new XMLHttpRequest();

xhttp.onreadystatechange = function() {

  if (this.readyState == 4 && this.status == 200) {

    xmlDoc = this.responseXML;

    txt = "";

    x = xmlDoc.getElementsByTagName("DOMAIN");

    for (i = 0; i < x.length; i++) {

      txt = txt + x[i].childNodes[0].nodeValue + "<br>";

    }

    document.getElementById("demo").innerHTML = txt;

  }

};

xhttp.open("GET", "a.xml", true);

xhttp.send();

</script>

 


a.xml 

 

<GOODSITE>

    <SITE>

        <NAME>홈짱닷컴</NAME>

        <DOMAIN>Homzzang.com</DOMAIN>

    </SITE>

    <SITE>

        <NAME>그누보드</NAME>

        <DOMAIN>Sir.kr</DOMAIN>

    </SITE>

</GOODSITE>


 

 

getAllResponseHeaders () 메서드

 

서버 응답으로부터 모든 헤더 정보 반환

 


<p id="demo"></p>


<script>

var xhttp = new XMLHttpRequest();

xhttp.onreadystatechange = function() {

  if (this.readyState == 4 && this.status == 200) {

    document.getElementById("demo").innerHTML =

    this.getAllResponseHeaders();

  }

};

xhttp.open("GET", "a.php", true);

xhttp.send();

</script>

 


[결과값]

date: Wed, 17 Apr 2019 22:06:48 GMT server: Apache/2.4.34 (Win64) PHP/7.2.10 connection: Keep-Alive x-powered-by: PHP/7.2.10 content-length: 200 keep-alive: timeout=5, max=99 content-type: text/html; charset=UTF-8


 

 

getResponseHeader () 메서드 

 

특정 헤더정보 반환

 


 

<p>connection: <span id="demo"></span></p>


<script>

var xhttp=new XMLHttpRequest();

xhttp.onreadystatechange = function() {

  if (this.readyState == 4 && this.status == 200) {

    document.getElementById("demo").innerHTML =

    this.getResponseHeader("connection");

  }

};

xhttp.open("GET", "a.php", true);

xhttp.send();

</script>

 


[결과값]

connection: Keep-Alive




분류 제목
Basic JS - Common Mistakes -
Basic JS - Performance -
Basic JS - Reserved Words -
Basic JS - Versions -
Basic JS - JSON (제이슨) - 데이터 전송 위한 가벼운 자료 형식.
Form JS - Forms - 폼양식 유효성 제어
Form JS - Forms API - 폼유효성
Object JS - Object - 객체개념(=객체의미=객체정의) ★ 3
Object JS - Object Property - 객체속성 ★
Object JS - Object Methods - 객체메서드 ★
Object JS - Object Accessors - 객체접근자 (Getter/Setter = 게러/세러 = 게터/세터… 2
Functions JS - Function Definition - 함수선언방법 + 함수호출방법 ★★★ (= 함수구문 + 함수특…
Functions JS - Function Parameter/argument - 함수 (매개변수/독립변수) ※ 변수 종류 ※ …
Functions JS - Function Invocation - 함수호출방법1 = (함수방식 + 메서드방식 + 함수생성자방…
Functions JS - call() 메서드 - 함수호출방법2 (= call메서드 = 콜메서드)
DOM JS - DOM (= 돔 = 문서객체모델) 정의
DOM JS - Method - 메서드 (= HTML 요소에 대한 수행 작업)
DOM JS - Document - 문서객체
DOM JS - Element Selector - 주요 요소선택자 (= 객체찾기) ※ JS외부링크호출 주의사항
DOM JS - HTML - 내용입력/내용변경/속성값변경(=속성값입력)
3/67
목록
찾아주셔서 감사합니다. Since 2012