최신 웹 개발 튜토리얼
 

AJAX 데이터베이스 예


AJAX는 데이터베이스와의 쌍방향 커뮤니케이션에 사용할 수 있습니다.


AJAX 데이터베이스 예

다음의 예는 웹 페이지가 AJAX와 데이터베이스에서 정보를 가져올 수있는 방법을 보여줍니다 :


Customer info will be listed here...

»그것을 자신을 시도


예 설명 - HTML 페이지를

사용자가 상기 드롭 다운 목록에서 고객 호출하는 기능을 선택하면, " showCustomer() "이 실행된다. 이 기능은에 의해 트리거됩니다 "onchange" 이벤트 :

<!DOCTYPE html>
<html>
<head>
<script>
function showCustomer(str)
{
if (str=="")
  {
  document.getElementById("txtHint").innerHTML="";
  return;
  }
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","getcustomer.asp?q="+str,true);
xmlhttp.send();
}
</script>
</head
<body>

<form>
<select name="customers" onchange="showCustomer(this.value)">
<option value="">Select a customer:</option>
<option value="ALFKI">Alfreds Futterkiste</option>
<option value="NORTS ">North/South</option>
<option value="WOLZA">Wolski Zajazd</option>
</select>
</form>
<br>
<div id="txtHint">Customer info will be listed here...</div>

</body>
</html>

소스 코드 설명 :

어떤 고객이 선택하지 않은 경우 (str.length==0) , 함수는 txtHint 자리의 내용을 지우고 기능을 종료합니다.

고객이 선택하면 showCustomer() 함수는 다음을 실행합니다 :

  • XMLHttpRequest를 객체를 생성
  • 서버 응답이 준비되었을 때 실행되는 함수를 만듭니다
  • 서버에 파일로 요청을 보내기
  • 매개 변수 것을 알 (q) (드롭 다운 목록의 내용)를 URL에 추가

ASP 파일

위의 자바 스크립트에 의해 호출 된 서버의 페이지라는 ASP 파일입니다 "getcustomer.asp" .

의 소스 코드 "getcustomer.asp" 데이터베이스에 대해 쿼리를 실행하고 HTML 테이블에 결과를 반환합니다 :

<%
response.expires=-1
sql="SELECT * FROM CUSTOMERS WHERE CUSTOMERID="
sql=sql & "'" & request.querystring("q") & "'"

set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open(Server.Mappath("/ datafolder /northwind.mdb"))
set rs=Server.CreateObject("ADODB.recordset")
rs.Open sql,conn

response.write("<table>")
do until rs.EOF
  for each x in rs.Fields
    response.write("<tr><td><b>" & x.name & "</b></td>")
    response.write("<td>" & x.value & "</td></tr>")
  next
  rs.MoveNext
loop
response.write("</table>")
%>