91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ajax結合mysql數據庫和smarty如何刷新局部數據狀態

發布時間:2021-07-08 08:58:59 來源:億速云 閱讀:131 作者:小新 欄目:web開發

小編給大家分享一下ajax結合mysql數據庫和smarty如何刷新局部數據狀態,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

效果狀態:通過點擊鎖定狀態實現狀態鎖定與不鎖定之間的切換

ajax結合mysql數據庫和smarty如何刷新局部數據狀態

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><h3>用戶權限表</h3></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;
  }
?>

看完了這篇文章,相信你對“ajax結合mysql數據庫和smarty如何刷新局部數據狀態”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安塞县| 桂林市| 那坡县| 武穴市| 甘孜县| 水富县| 全州县| 周宁县| 樟树市| 民和| 甘泉县| 丹凤县| 都兰县| 高要市| 汕尾市| 福建省| 乌苏市| 新巴尔虎左旗| 崇礼县| 枣庄市| 桓台县| 中方县| 禹州市| 高阳县| 铁岭市| 白沙| 镇雄县| 大邑县| 寿宁县| 桦甸市| 读书| 子长县| 安溪县| 车致| 富顺县| 方正县| 台南市| 沅江市| 廊坊市| 通山县| 白水县|