ホームページ >PHPフレームワーク >ThinkPHP >thinkphp での一部のコンテンツに対する Ajax 非リフレッシュ ページングの詳細な説明

thinkphp での一部のコンテンツに対する Ajax 非リフレッシュ ページングの詳細な説明

藏色散人
藏色散人転載
2022-01-31 05:00:302350ブラウズ

次のthinkphp フレームワークチュートリアルのコラムでは、thinkphp のページ内の一部のコンテンツの ajax 非更新ページングについて紹介します。困っている友人の役に立てば幸いです。

thinkphp フレームワークに付属するページング クラスでは、毎回ページ全体を更新する必要がありますページがめくられます。この種のページめくりのユーザー エクスペリエンスは明らかに理想的ではありません。ページをめくるたびに、必要なデータ セットの部分のデータのみが更新されることを望みます。このようにして、次のことができます。 ajax 非同期通信、ajax を使用してデータベースと通信する (私は開発中です。プロセスは mysql データベースを使用します) 非同期対話、データベースからクエリされたデータを返し、元のデータを jquery に置き換え、ページを更新せずに部分更新を実行することを簡単に考えられます。 、こうして望ましい効果を達成します。
thinkphp ajax ページング クラス
このページング クラスはインターネット上にあるリソースです。このようなクラスは独自の thinkphp で直接作成できます。ここでのクラス名は AjaxPage.class.php です。必要に応じて、名前空間を変更できます

1f87a0dc59f026a747ee557226eb4900'条记录','prev'=>'上一页','next'=>'下一页','first'=>'第一页','last'=>'最后一页','theme'=>' %totalRow% %header% %nowPage%/%totalPage% 页 %upPage% %downPage% %first%  %prePage%  %linkPage%  %nextPage% %end%');
// 默认分页变量名
protected $varPage;


public function __construct($totalRows,$listRows='',$ajax_func,$parameter='') {
    $this->totalRows = $totalRows;
    $this->ajax_func = $ajax_func;
    $this->parameter = $parameter;
    $this->varPage = C('VAR_PAGE') ? C('VAR_PAGE') : 'p' ;
    if(!empty($listRows)) {
        $this->listRows = intval($listRows);
    }
    $this->totalPages = ceil($this->totalRows/$this->listRows);     //总页数
    $this->coolPages  = ceil($this->totalPages/$this->rollPage);
    $this->nowPage  = !empty($_GET[$this->varPage])?intval($_GET[$this->varPage]):1;
    if(!empty($this->totalPages) && $this->nowPage>$this->totalPages) {
        $this->nowPage = $this->totalPages;
    }
    $this->firstRow = $this->listRows*($this->nowPage-1);
}

 public function nowpage($totalRows,$listRows='',$ajax_func,$parameter='') {
    $this->totalRows = $totalRows;
    $this->ajax_func = $ajax_func;
    $this->parameter = $parameter;
    $this->varPage = C('VAR_PAGE') ? C('VAR_PAGE') : 'p' ;
    if(!empty($listRows)) {
        $this->listRows = intval($listRows);
    }
    $this->totalPages = ceil($this->totalRows/$this->listRows);     //总页数
    $this->coolPages  = ceil($this->totalPages/$this->rollPage);
    $this->nowPage  = !empty($_GET[$this->varPage])?intval($_GET[$this->varPage]):1;
    if(!empty($this->totalPages) && $this->nowPage>$this->totalPages) {
        $this->nowPage = $this->totalPages;
    }
    $this->firstRow = $this->listRows*($this->nowPage-1);

    return $this->nowPage;
}

public function setConfig($name,$value) {
    if(isset($this->config[$name])) {
        $this->config[$name]    =   $value;
    }
}

public function show() {
    if(0 == $this->totalRows) return '';
    $p = $this->varPage;
    $nowCoolPage      = ceil($this->nowPage/$this->rollPage);
    $url  =  $_SERVER['REQUEST_URI'].(strpos($_SERVER['REQUEST_URI'],'?')?'':"?").$this->parameter;
    $parse = parse_url($url);
    if(isset($parse['query'])) {
        parse_str($parse['query'],$params);
        unset($params[$p]);
        $url   =  $parse['path'].'?'.http_build_query($params);
    }
    //上下翻页字符串
    $upRow   = $this->nowPage-1;
    $downRow = $this->nowPage+1;
    if ($upRow>0){
        $upPage="4c6ddcfa986b1cfd4b100c516dd444ceajax_func."(".$upRow.")'>".$this->config['prev']."5db79b134e9f6b82c0b36e0489ee08ed";
    }else{
        $upPage="";
    }

    if ($downRow 8aa9cd03f13872f1c27a1dd7dc85aa49totalPages){
        $downPage="4c6ddcfa986b1cfd4b100c516dd444ceajax_func."(".$downRow.")'>".$this->config['next']."5db79b134e9f6b82c0b36e0489ee08ed";
    }else{
        $downPage="";
    }
    // 5e91ac722550d2d65fc65c3024cfc1f6 >>
    if($nowCoolPage == 1){
        $theFirst = "";
        $prePage = "";
    }else{
        $preRow =  $this->nowPage-$this->rollPage;
        $prePage = "4c6ddcfa986b1cfd4b100c516dd444ceajax_func."(".$preRow.")'>上".$this->rollPage."页5db79b134e9f6b82c0b36e0489ee08ed";
        $theFirst = "4c6ddcfa986b1cfd4b100c516dd444ceajax_func."(1)' >".$this->config['first']."5db79b134e9f6b82c0b36e0489ee08ed";
    }
    if($nowCoolPage == $this->coolPages){
        $nextPage = "";
        $theEnd="";
    }else{
        $nextRow = $this->nowPage+$this->rollPage;
        $theEndRow = $this->totalPages;
        $nextPage = "4c6ddcfa986b1cfd4b100c516dd444ceajax_func."(".$nextRow.")' >下".$this->rollPage."页5db79b134e9f6b82c0b36e0489ee08ed";
        $theEnd = "4c6ddcfa986b1cfd4b100c516dd444ceajax_func."(".$theEndRow.")' >".$this->config['last']."5db79b134e9f6b82c0b36e0489ee08ed";
    }
    // 1 2 3 4 5
    $linkPage = "";
    for($i=1;$i930cdc47afbfa294d5d6bff505cbe3ddrollPage;$i++){
        $page=($nowCoolPage-1)*$this->rollPage+$i;
        if($page!=$this->nowPage){
            if($page930cdc47afbfa294d5d6bff505cbe3ddtotalPages){
               $linkPage .= " 4c6ddcfa986b1cfd4b100c516dd444ceajax_func."(".$page.")'> ".$page." 5db79b134e9f6b82c0b36e0489ee08ed";
            }else{
                break;
            }
        }else{
            if($this->totalPages != 1){
                $linkPage .= " c9c3467744b1ee299b813ab65906400d".$page."54bdf357c58b8a65c66d7c19c8e4d114";
            }
        }
    }
    $pageStr  =  str_replace(
        array('%header%','%nowPage%','%totalRow%','%totalPage%','%upPage%','%downPage%','%first%','%prePage%','%linkPage%','%nextPage%','%end%'),
        array($this->config['header'],$this->nowPage,$this->totalRows,$this->totalPages,$upPage,$downPage,$theFirst,$prePage,$linkPage,$nextPage,$theEnd),$this->config['theme']);
    return $pageStr;
}

}

具体的な手順
1.Controller
インデックス メソッドで表示し、ページ メソッドでフェッチして ajaxReturn を実行するなどここに注目 取得するのは参照ページ(記事)

cd43c1cac171b9d5901cb44c2adcb334count();
        //实例化分页类,传入三个参数,分别是数据总数、每页显示的数据条数、要调用的jQuery ajax方法名
        $p=new \Think\AjaxPage($count,4,'server');
        //产生分页信息
        $page=$p->show();
        //要查询的数据,limit表示每页查询的数量,这里为4条
        $data = $info->limit($p->firstRow.','.$p->listRows)->select();
        //assign方法往模板赋值
        $this->assign('list',$data);
        $this->assign('page',$page);
//        $res["content"] = $this->fetch('Index/index');
//        $this->ajaxReturn($res);
        $this->display();
    }
    public function page(){
        //实例化数据模型
        $info=M('info');
        //统计要查询数据的数量
        $count=$info->count();
        //实例化分页类,传入三个参数,分别是数据总数、每页显示的数据条数、要调用的jQuery ajax方法名
        $p=new \Think\AjaxPage($count,4,'server');
        //产生分页信息
        $page=$p->show();
        //要查询的数据,limit表示每页查询的数量,这里为4条
        $data = $info->limit($p->firstRow.','.$p->listRows)->select();
        //assign方法往模板赋值
        $this->assign('list',$data);
        $this->assign('page',$page);
        //ajax返回信息
        $res["content"] = $this->fetch('Index/article');
        $this->ajaxReturn($res);
    }
}

2. テンプレート
列テンプレートindex.html

このうち、参照しているテンプレートはコンテンツの一部です。ページ分割が必要です

76c82f278ac045591c9159d381de2c57
100db36a723c770d327fc0aef2ce13b1
93f0f5c25f18dab9d176bd4f6de5d30e
9c3bca370b5104690d9ef395f2c5f8d1
e388a4556c0f65e1904146cc1a846bee
    hello world
94b3e26ee717c64999d7867364b1b4a3
4826afc8bc0934c5141d6810ee82aa53
3f1c4e4b6b16bbbd69b2ee476dc4f83a
    function server(pid){  
        var pid = pid;
        $.get("{:U('Index/page')}", "p="+pid, function(data){  
             $("#server").replaceWith("7db81b6f8cec3ce3f482d60b8ae1b72c"
             +data.content+
             "94b3e26ee717c64999d7867364b1b4a3"); 
        });
    }
2cacc6d41bbb37262a98f745aa00fbf0 
6432ecebf4dfccad7c9cdaa663a4dfcc2cacc6d41bbb37262a98f745aa00fbf0
73a6ac4ed44ffec12cee46588e518a5e

ページ分割が必要なテンプレート

article.html

   <div id="server">
        <div class="row-fluid"  >
            <div class="span12">
                <div class="portlet box green">
                    <div class="portlet-title">
                        <div class="caption"><i class="icon-globe"></i>信息列表</div>
                    </div>

                    <div class="portlet-body" >
                
                        <table class="table table-striped table-bordered table-hover table-full-width" id="sample_1">

                            <thead>

                                <tr>
                                    <th class="hidden-480">a</th>
                                    <th class="hidden-480">b</th>
                                    <th class="hidden-480">c</th>
                                    <th class="hidden-480">d</th>
                                </tr>

                            </thead>

                            <tbody>
                                    //循环赋值
                                    <foreach name=&#39;list&#39; item=&#39;info&#39;>
                                        <tr>
                                            <td>{$info.a}</td>
                                            <td>{$info.b}</td>     
                                            <td>{$info.c}</td>
                                            <td>{$info.d}</td>
                                         
                                        </tr>
                                    </foreach>
                                
                            </tbody>
                            
                        </table>
                        //分页信息
                        <div class="row-fluid"> {$page} </div>
                        
                    </div>
                </div>    
            </div>        
        </div>
</div>

これにより、ページ番号をクリックすると、ページ分割コンテンツの上のコンテンツが確実に表示されます。再度読み込まれないため、Web ページがめちゃくちゃになります

3.js 部分
このステップは、ajax 非リフレッシュ ページングの実現に焦点を当てています。これは、jQuery の ajax 通信を使用します。データベースを作成すると、取得したデータがテンプレートに書き込まれ、以前のデータと置き換えられ、ページングの目的を達成するために設定されます。 server.js は、内部または外部に記述することができ、自由に選択できます

 3f1c4e4b6b16bbbd69b2ee476dc4f83a
    function server(pid){  
        var pid = pid;
        $.get("{:U('Index/page')}", "p="+pid, function(data){  
             $("#server").replaceWith("7db81b6f8cec3ce3f482d60b8ae1b72c"
             +data.content+
             "94b3e26ee717c64999d7867364b1b4a3"); 
        });
    }
2cacc6d41bbb37262a98f745aa00fbf0

このメソッド ネーム サーバーは、コントローラーのインスタンス化されたページング クラスに渡される 3 番目のパラメーターです。ページごとにテンプレートをクリックすると、この jsメソッドserver(p)がトリガーされ、その中で渡されるページ番号。

$p=new \Think\AjaxPage($count,4,'server');

ここで使用されているのは、ajax とバックグラウンドの間で通信するための jQuery の ajax メソッドの .get 形式です。返されたデータを取得するには、replaceWith メソッドを使用し、

<div id=&#39;server&#39;>+数据</div>

を使用します。テンプレート内のサーバーの ID を置き換えます。p、ページング効果を実現します。

推奨される学習: 「thinkphp ビデオ チュートリアル

以上がthinkphp での一部のコンテンツに対する Ajax 非リフレッシュ ページングの詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はsegmentfault.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。