国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > AJAX > 正文

ajax結(jié)合mysql數(shù)據(jù)庫和smarty實現(xiàn)局部數(shù)據(jù)狀態(tài)的刷新方法

2024-09-01 08:30:59
字體:
供稿:網(wǎng)友

效果狀態(tài):通過點擊鎖定狀態(tài)實現(xiàn)狀態(tài)鎖定與不鎖定之間的切換

1.主程序:01.php導入smarty和mysql類,取得數(shù)據(jù)導入列表模板

<?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遍歷模板數(shù)據(jù)并顯示,其中調(diào)用ajax改變鎖定狀態(tài)

<!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>鎖定狀態(tài)</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){          //創(chuàng)建ajax對象          var xhr=new XMLHttpRequest();          //打開一個鏈接          xhr.open('get','02.php?is_lock='+lock+"&uid="+uid);          //發(fā)送ajax請求          xhr.send(null);          //設置回調(diào)、監(jiān)聽函數(shù)          xhr.onreadystatechange=function(){            //如果ajax狀態(tài)碼響應正常且網(wǎng)絡正常,獲取響應文本            if(xhr.readyState==4&&xhr.status==200){              if(xhr.responseText){                window.location.reload();              }else{                alert("切換狀態(tài)失敗!");              }            }          }        }    </script></html>

3.ajax響應腳本,接收ajax通過get方式傳遞過來的數(shù)據(jù)更改數(shù)據(jù)庫內(nèi)容并響應文本傳回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;  }?>

以上這篇ajax結(jié)合mysql數(shù)據(jù)庫和smarty實現(xiàn)局部數(shù)據(jù)狀態(tài)的刷新方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持武林網(wǎng)。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 阳西县| 武平县| 宜兰县| 龙海市| 石狮市| 河间市| 永泰县| 台湾省| 桃园县| 饶河县| 佛冈县| 两当县| 枣阳市| 陆良县| 合肥市| 文成县| 姚安县| 太康县| 长兴县| 丰顺县| 华池县| 兴隆县| 疏勒县| 长葛市| 云南省| 阳原县| 乌鲁木齐市| 永寿县| 会同县| 开远市| 饶平县| 华安县| 额济纳旗| 南丹县| 滦平县| 河西区| 浙江省| 马关县| 商南县| 呼和浩特市| 涪陵区|