JavaScript

[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



방문 감사합니다. (즐겨찾기 등록: Ctrl + D)

분류 제목
Basic JS - String Methods - JS문자열메서드
Basic JS - Number - JS숫자
Basic JS - Number Method - JS숫자메서드
Basic JS - Math 객체 - JS수학객체 (= JS산수객체 = Math객체 = Math Object = 매스 …
Basic JS - Dates - JS날짜
Basic JS - Date Method - JS날짜메서드
Basic JS - Array - JS배열 ★★★★★
Basic JS - Array Method - JS배열메서드
Basic JS - Sorting Array - JS배열정렬
Basic JS - Booleans() 메서드 - JS참거짓판단 (= JS참거짓메서드 = JS블린메서드 = JS불린즈메…
Basic JS - Comparison and Logical Operator - JS비교연산자 / JS논리연산자
Basic JS - if...else 조건문 구문 ★ (= 이프 엘스 조건문 = 이프문) ※ 시간 조건문
Basic JS - Switch 조건문 구문 (= 스위치문 = 스위치조건문)
Basic JS - for반복문 ★★★★★ - (JS포반복문 = for문 = JS포문) ※ 가변 배열키
Basic JS - While 반복문 구문 (= While문 = While반복문 = 와일문 = 와일반복문)
2/89
목록
  • 채팅방
  • 필독
1. 채팅창 헤드에서 접속자 확인 2. 닉네임 클릭해 1:1 채팅 가능 3. 닉네임 클릭해 귓속말 가능 4. 닉네임 클릭해 호출하기 가능 5. 우하단 클릭해 환경 설정 가능 6. 의뢰글 작성 후 의뢰 상담 가능 7. 질문글 작성 후 질문 상담 가능 8. 채팅방에 개인정보 입력 금지 9. 채팅방에 광고 욕설 비방 금지
 홈  PC버전 로그인 일본어
웹디자인언어
서버관리언어 1
고급코딩언어
그누보드
제작의뢰
Q&A
커뮤니티
웹유틸
회원센터
홈짱 PC버전 로그인