최신 웹 개발 튜토리얼
 

PHP예 - AJAX 라이브 검색


AJAX는 더 사용자 친화적 인 대화 형 검색을 만들 수 있습니다.


AJAX 라이브 검색

입력하는 동안 검색 결과를 얻을 경우 다음의 예는, 라이브 검색을 시연 할 예정이다.

라이브 검색은 기존 검색에 비해 많은 장점이 있습니다 :

  • 입력하면 결과가 표시된다
  • 입력을 지속적으로 결과 축소
  • 결과가 너무 좁 될 경우, 광범위한 결과를 확인 문자를 제거

아래의 입력 필드에 w3ii 페이지 검색 :

예제의 결과는 위의 XML 파일에서 발견된다 ( links.xml ) . 이 예는 작고 간단하게하기 위해, 여섯 명 밖에 결과를 사용할 수 있습니다.


예 설명 - HTML 페이지를

사용자 유형 상기 입력 필드에 문자가 기능하는 경우 " showResult() " 이 실행된다. 이 기능은에 의해 트리거됩니다 "onkeyup" 이벤트 :

<html>
<head>
<script>
function showResult(str) {
  if (str.length==0) {
    document.getElementById("livesearch").innerHTML="";
    document.getElementById("livesearch").style.border="0px";
    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("livesearch").innerHTML=xmlhttp.responseText;
      document.getElementById("livesearch").style.border="1px solid #A5ACB2";
    }
  }
  xmlhttp.open("GET","livesearch.php?q="+str,true);
  xmlhttp.send();
}
</script>
</head>
<body>

<form>
<input type="text" size="30" onkeyup="showResult(this.value)">
<div id="livesearch"></div>
</form>

</body>
</html>

소스 코드 설명 :

입력 필드가 비어 있으면 (str.length==0) 함수는 livesearch 자리의 내용을 클리어하고, 기능을 종료한다.

입력 필드가 비어 있지 않으면, showResult() 함수는 다음을 실행한다 :

  • XMLHttpRequest를 객체를 생성
  • 서버 응답이 준비되었을 때 실행되는 함수를 만듭니다
  • 서버에 파일로 요청을 보내기
  • 파라미터 알 수 (q) (입력 필드의 내용)를 URL에 추가

PHP 파일

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

의 소스 코드 "livesearch.php" 검색 문자열에 일치하는 제목에 대한 XML 파일을 검색하고 결과를 반환합니다 :

<?php
$xmlDoc=new DOMDocument();
$xmlDoc->load("links.xml");

$x=$xmlDoc->getElementsByTagName('link');

//get the q parameter from URL
$q=$_GET["q"];

//lookup all links from the xml file if length of q>0
if (strlen($q)>0) {
  $hint="";
  for($i=0; $i<($x->length); $i++) {
    $y=$x->item($i)->getElementsByTagName('title');
    $z=$x->item($i)->getElementsByTagName('url');
    if ($y->item(0)->nodeType==1) {
      //find a link matching the search text
      if (stristr($y->item(0)->childNodes->item(0)->nodeValue,$q)) {
        if ($hint=="") {
          $hint="<a href='" .
          $z->item(0)->childNodes->item(0)->nodeValue .
          "' target='_blank'>" .
          $y->item(0)->childNodes->item(0)->nodeValue . "</a>";
        } else {
          $hint=$hint . "<br /><a href='" .
          $z->item(0)->childNodes->item(0)->nodeValue .
          "' target='_blank'>" .
          $y->item(0)->childNodes->item(0)->nodeValue . "</a>";
        }
      }
    }
  }
}

// Set output to "no suggestion" if no hint was found
// or to the correct values
if ($hint=="") {
  $response="no suggestion";
} else {
  $response=$hint;
}

//output the response
echo $response;
?>

이 경우 자바 스크립트에서 전송 된 텍스트 ( strlen($q) > 0), 다음이 발생합니다

  • 새 XML DOM 객체로 XML 파일을로드
  • 모든 <제목> 요소를 통해 루프는 자바 스크립트에서 전송 된 텍스트에서 일치하는 항목을 찾을 수 있습니다
  • 에서 올바른 URL 및 제목 설정 "$response" 변수를. 하나 이상의 일치하는 항목이 발견되면 모든 경기는 변수에 추가
  • 일치하는 항목이 없으면은 $ 반응 변수로 설정되어 "no suggestion"