이번에는 부분 데이터 새로 고침을 위해 ajax를 mysql 데이터베이스와 결합하여 사용할 때의 주의사항에 대해 함께 살펴보겠습니다.
효과 상태: 잠금 상태를 클릭하여 잠금 상태와 잠금 해제 상태 간 전환
1. 01.php는 smarty 및 mysql 클래스를 가져오고 데이터 가져오기 목록 템플릿을 얻습니다
<?php include './include/Mysql.class.php'; include './libs/Smarty.class.php'; $db=new Mysql; $smarty=new Smarty; $lists=$db->getALL('users'); $smarty->assign('lists',$lists); $smarty->display('list.html'); ?>
2 목록 템플릿은 smarty를 사용하여 템플릿 데이터를 탐색하고 표시하고 ajax를 호출하여 잠금 상태를 변경합니다.
<!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>用户权限展示表</title> </head> <body> <table align="center" border="1" width="500"> <center><h2>用户权限表</h2></center> <tr> <th>uid</th><th>用户名</th><th>密码</th><th>锁定状态</th><th>角色</th> </tr> {foreach $lists as $list} <tr align="center"> <td>{$list.uid}</td> <td>{$list.username}</td> <td>{$list.password}</td> {if $list.is_lock==1} <td><a href="javascript:lock(0,{$list.uid});" rel="external nofollow" >锁定</a></td> {else} <td><a href="javascript:lock(1,{$list.uid})" rel="external nofollow" ;>取消锁定</a></td> {/if} {if $list.role==1} <td>管理员</td> {else} <td>编辑者</td> {/if} </tr> {/foreach} </table> </body> <script type="text/javascript"> function lock(lock,uid){ //创建ajax对象 var xhr=new XMLHttpRequest(); //打开一个链接 xhr.open('get','02.php?is_lock='+lock+"&uid="+uid); //发送ajax请求 xhr.send(null); //设置回调、监听函数 xhr.onreadystatechange=function(){ //如果ajax状态码响应正常且网络正常,获取响应文本 if(xhr.readyState==4&&xhr.status==200){ if(xhr.responseText){ window.location.reload(); }else{ alert("切换状态失败!"); } } } } </script> </html>
3.ajax 응답 스크립트는 ajax가 전달한 데이터를 받습니다. get 메소드는 데이터베이스 내용을 변경하고 응답 텍스트는 js 스크립트로 다시 전송됩니다
<?php include './include/Mysql.class.php'; $lock=$_GET['is_lock']; $uid=$_GET['uid']; $db=new Mysql; $result=$db->update('users',"is_lock=$lock","uid=$uid"); if($result){ echo true; }else{ echo false; } ?>
이 기사의 사례를 읽은 후 메소드를 마스터했다고 생각합니다. 더 흥미로운 정보를 보려면 다른 관련 항목에 주의하세요. PHP 중국어 웹사이트의 기사!
추천 도서:
동적 원형 차트 및 세로 막대형 차트를 구현하기 위한 ajax의 자세한 그래픽 설명
정수, 소수 또는 실수인지 판단하는 일반적인 작성 방법은 무엇입니까
위 내용은 부분 데이터 새로 고침을 달성하기 위해 mysql 데이터베이스와 결합된 ajax의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!