中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

YII CLinkPager分頁類擴展增加如何顯示共多少頁

發布時間:2021-09-29 11:38:34 來源:億速云 閱讀:137 作者:iii 欄目:開發技術

本篇內容介紹了“YII CLinkPager分頁類擴展增加如何顯示共多少頁”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

1、默認的CLinkPager顯示的效果

上面這里寫了css的樣式哈,我們來看pager代碼:

<div class="page-link">
<?php $this->widget('CLinkPager',array(
'header' => '',
'firstPageLabel' => '首頁',
'lastPageLabel' => '尾頁',
'prevPageLabel' => '&lt;',
'nextPageLabel' => '&gt;',
'pages' => $pages,
'maxButtonCount'=>5,
'htmlOptions' => array('class' => 'page-link'), //分頁要使用的css樣式
));?>
</div>

2、我們來看想要的分頁類效果

也就是說后面增加顯示了共多少頁,這個怎么做到的喃?這里我稍微小小的擴展了一下widget組件CLinkPager,看上去也是非常的狠狠簡單吶,廢話不多少,來來先看代碼:

<?php
/**
* 分頁組建ClinkPager擴展
* @description page-tab-tog為分頁的樣式class
* @author <[<xm 杭州>]>
* @time 2016-01-29
* @example
* <div class="page-tab-tog">
* <?php $this->widget('MLinkPager',array(
* 'header' => '',
* 'firstPageLabel' => '首頁',
* 'lastPageLabel' => '尾頁',
* 'prevPageLabel' => '&lt;',
* 'nextPageLabel' => '&gt;',
* 'pages' => $pages,
* 'maxButtonCount'=>5,
* 'htmlOptions' => array('class' => 'page-tab-tog'),
* ));?>
* </div>
*/
class MLinkPager extends CLinkPager
{
//設置為true的時候,顯示共X頁,$this->forceTotalPage值優先該值
public $mCountPage = false;
//是否強制顯示共x頁,設置為true時,$this->mCountPage和$this->getPageRange()無效
public $forceTotalPage = false;
public function init()
{
}
public function run()
{
$this->registerClientScript();
$buttons=$this->createPageButtons();
list($beginPage,$endPage)=$this->getPageRange();
if ($this->forceTotalPage)
{
$buttons[] = CHtml::tag('li', array('class'=>'totle'),'共'.$this->getPageCount().'頁');
}
else
{
if ($this->mCountPage && $endPage > 0)
{
$buttons[] = CHtml::tag('li', array('class'=>'totle'),'共'.$this->getPageCount().'頁');
}
}
if(empty($buttons))
return;
echo $this->header;
echo CHtml::tag('div',$this->htmlOptions,implode("\n",$buttons));
echo $this->footer;
}
}

有人說了,一看那么一堆代碼,頭疼,你這玩意怎么能以最快的速度見到效果呢?來來我們繼續看怎么使用,首先呢,你需要先把上面的擴展MLinkPager原封不動的拷貝到本地的components目錄下的MlinkPager文件里,什么,你沒有這個文件,自己創建,^~^!好了以后咱們來看下view里面是怎么使用的,那是簡單的不能再過于簡單了。

<div class="page-tab-tog">
<?php $this->widget('MLinkPager',array(
'header' => '',
'firstPageLabel' => '首頁',
'lastPageLabel' => '尾頁',
'prevPageLabel' => '&lt;',
'nextPageLabel' => '&gt;',
'pages' => $pages,
'maxButtonCount'=>5,
'mCountPage' => true, //!!!注意看這里,加一行代碼就ok了
'htmlOptions' => array('class' => 'page-tab-tog'),
));?>
</div>

什么?你剛睡醒眼神不好,沒看出來區別?注意看MLinkPager的配置項mCountPage,這個設置為true就萬事大吉了!

特別說明:如果你的列表沒有數據的話,分頁是不顯示頁碼的,但是如果有刁蠻產品要的需求是沒有列表數據,但但但你必須得吧共0頁顯示出來,我們的MlinkPager只需要設置下配置項forceTotalPage為true即可,此時設置mCountPager無效了咯,具體詳細請看MlinkPage類,次類可自己再進行擴展

下面給大家介紹在在yii中使用分頁

yii中使用分頁很方便,如下兩種方法:

在控制器中:

1、

$criteria = new CDbCriteria(); //new cdbcriteria數據庫<br>$criteria->id = 'id ASC'; //排序規則
$count = Exchange::model()->count($criteria);
$pager = new CPagination($count);
$pager->pageSize=30;
$pager->applyLimit($criteria);
$categoryInfo = Category::model()->findAll($criteria); //根據條件查詢

  2、

$criteria = new CDbCriteria();
$criteria->order = 'id ASC';
$criteria->addCondition('status=1'); //根據條件查詢
$criteria->addCondition('exchange_status=0');
$count = Exchange::model()->count($criteria);
$pager = new CPagination($count);
$pager->pageSize=30;
$pager->applyLimit($criteria); 
$exchangeInfo = Exchange::model()->findAll($criteria);

 render中傳入參數:

array("pages" => $pager)

 視圖中加入:

$this->widget('CLinkPager',array(
'header'=>'',
'firstPageLabel' => '首頁',
'lastPageLabel' => '末頁',
'prevPageLabel' => '上一頁',
'nextPageLabel' => '下一頁',
'pages' => $pages,
'maxButtonCount'=>8,
)
);

  分頁思想:

1、計算數據庫中總的條數

2、分頁大小

3、設置偏移量limit

在Yii中,分頁時會用這個類CDBcritria進行數據庫查詢很重要,這樣分頁很簡單。

“YII CLinkPager分頁類擴展增加如何顯示共多少頁”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

康乐县| 札达县| 澜沧| 杭锦旗| 聂拉木县| 上蔡县| 丰台区| 胶州市| 绩溪县| 恩施市| 云龙县| 庆城县| SHOW| 枣强县| 浦县| 唐河县| 方城县| 临清市| 金塔县| 湄潭县| 宁陵县| 胶南市| 清徐县| 三原县| 崇阳县| 深泽县| 琼海市| 包头市| 沐川县| 招远市| 华坪县| 昔阳县| 全椒县| 红原县| 新营市| 含山县| 英德市| 子洲县| 清苑县| 奉新县| 威海市|