dedecms独立模型分页功能的完善

dedecms其实在架构方面没什么问题,但是估计里面有些功能是新手做的吧,有很多待完善的地方,比如分页功能,从代码可以直接看出当时的负责人有敷衍了事的心里。

dede的分页如果有两个页码显示的话,无法显示出总的文章数,举个例子:

在普通文章模型下面,列表的分页是这样的:

但是在独立模型中就成了这样了

最后面的共*页*条的信息不见了,相信遇到这个问题的同学首先想到的是自己哪里用错了,其实不是,dede独立模型这里的代码是偷工减料了的。处理独立模型列表的代码在arc.sglistview.class.php中,我们比较下同样负责显示分页的代码段,独立模型和普通模型中有什么区别:

普通文章模型:

/**
 *  获取动态的分页列表
 *
 * @access    public
 * @param     string  $list_len  列表宽度
 * @param     string  $list_len  列表样式
 * @return    string
 */
function GetPageListDM($list_len,$listitem="index,end,pre,next,pageno")
{
    global $cfg_rewrite;
    $prepage = $nextpage = '';
    $prepagenum = $this->PageNo-1;
    $nextpagenum = $this->PageNo+1;
    if($list_len=='' || preg_match("/[^0-9]/", $list_len))
    {
        $list_len=3;
    }
    $totalpage = ceil($this->TotalResult/$this->PageSize);
    if($totalpage<=1 && $this->TotalResult>0)
    {
        return "<li><span class=\"pageinfo\">共 1 页/".$this->TotalResult." 条记录</span></li>\r\n";
    }
    if($this->TotalResult == 0)
    {
        return "<li><span class=\"pageinfo\">共 0 页/".$this->TotalResult." 条记录</span></li>\r\n";
    }
    $maininfo = "<li><span class=\"pageinfo\">共 <strong>{$totalpage}</strong>页<strong>".$this->TotalResult."</strong>条</span></li>\r\n";

    $purl = $this->GetCurUrl();
    // 如果开启为静态,则对规则进行替换
    if($cfg_rewrite == 'Y')
    {
        $nowurls = preg_replace("/\-/", ".php?", $purl);
        $nowurls = explode("?", $nowurls);
        $purl = $nowurls[0];
    }
    $geturl = "tid=".$this->TypeID."&TotalResult=".$this->TotalResult."&";
    $purl .= '?'.$geturl;

    $optionlist = '';
    //$hidenform = "<input type='hidden' name='tid' value='".$this->TypeID."'>\r\n";
    //$hidenform .= "<input type='hidden' name='TotalResult' value='".$this->TotalResult."'>\r\n";
    //获得上一页和下一页的链接
    if($this->PageNo != 1)
    {
        $prepage.="<li><a href='".$purl."PageNo=$prepagenum'>上一页</a></li>\r\n";
        $indexpage="<li><a href='".$purl."PageNo=1'>首页</a></li>\r\n";
    }
    else
    {
        $indexpage="<li><a>首页</a></li>\r\n";
    }
    if($this->PageNo!=$totalpage && $totalpage>1)
    {
        $nextpage.="<li><a href='".$purl."PageNo=$nextpagenum'>下一页</a></li>\r\n";
        $endpage="<li><a href='".$purl."PageNo=$totalpage'>末页</a></li>\r\n";
    }
    else
    {
        $endpage="<li><a>末页</a></li>\r\n";
    }
    //获得数字链接
    $listdd="";
    $total_list = $list_len * 2 + 1;
    if($this->PageNo >= $total_list)
    {
        $j = $this->PageNo-$list_len;
        $total_list = $this->PageNo+$list_len;
        if($total_list>$totalpage)
        {
            $total_list=$totalpage;
        }
    }
    else
    {
        $j=1;
        if($total_list>$totalpage)
        {
            $total_list=$totalpage;
        }
    }
    for($j;$j<=$total_list;$j++)
    {
        if($j==$this->PageNo)
        {
            $listdd.= "<li class=\"thisclass\"><a>$j</a></li>\r\n";
        }
        else
        {
            $listdd.="<li><a href='".$purl."PageNo=$j'>".$j."</a></li>\r\n";
        }
    }
    $plist = '';
    if(preg_match('/index/i', $listitem)) $plist .= $indexpage;
    if(preg_match('/pre/i', $listitem)) $plist .= $prepage;
    if(preg_match('/pageno/i', $listitem)) $plist .= $listdd;
    if(preg_match('/next/i', $listitem)) $plist .= $nextpage;
    if(preg_match('/end/i', $listitem)) $plist .= $endpage;
    if(preg_match('/option/i', $listitem)) $plist .= $optionlist;
    if(preg_match('/info/i', $listitem)) $plist .= $maininfo;

    if($cfg_rewrite == 'Y')
    {
        $plist = str_replace('.php?tid=', '-', $plist);
        $plist = str_replace('&TotalResult=', '-', $plist);
        $plist = preg_replace("/&PageNo=(\d+)/i",'-\\1.html',$plist);
    }
    return $plist;
}

独立模型:

/**
 *  获取动态的分页列表
 *
 * @access    public
 * @param     int  $list_len  列表宽度
 * @param     string  $listitem  列表样式
 * @return    string
 */
function GetPageListDM($list_len,$listitem="index,end,pre,next,pageno")
{
    global $nativeplace,$infotype,$keyword;
    if(empty($nativeplace)) $nativeplace = 0;
    if(empty($infotype)) $infotype = 0;
    if(empty($keyword)) $keyword = '';
    $prepage = $nextpage = '';
    $prepagenum = $this->PageNo - 1;
    $nextpagenum = $this->PageNo + 1;
    if($list_len=="" || preg_match("/[^0-9]/", $list_len))
    {
        $list_len=3;
    }
    $totalpage = ceil($this->TotalResult / $this->PageSize);
    if($totalpage<=1 && $this->TotalResult>0)
    {
        return "<span class=\"pageinfo\">共1页/".$this->TotalResult."条记录</span>";
    }
    if($this->TotalResult == 0)
    {
        return "<span class=\"pageinfo\">共0页/".$this->TotalResult."条记录</span>";
    }
    $purl = $this->GetCurUrl();
    $geturl = "tid=".$this->TypeID."&TotalResult=".$this->TotalResult."&nativeplace=$nativeplace&infotype=$infotype&keyword=".urlencode($keyword)."&";
    $hidenform = "<input type='hidden' name='tid' value='".$this->TypeID."' />\r\n";
    $hidenform = "<input type='hidden' name='nativeplace' value='$nativeplace' />\r\n";
    $hidenform = "<input type='hidden' name='infotype' value='$infotype' />\r\n";
    $hidenform = "<input type='hidden' name='keyword' value='$keyword' />\r\n";
    $hidenform .= "<input type='hidden' name='TotalResult' value='".$this->TotalResult."' />\r\n";
    $purl .= "?".$geturl;
    //获得上一页和下一页的链接
    if($this->PageNo != 1)
    {
        $prepage.="<li><a href='".$purl."PageNo=$prepagenum'>上一页</a></li>\r\n";
        $indexpage="<li><a href='".$purl."PageNo=1'>首页</a></li>\r\n";
    }
    else
    {
        $indexpage="<li><a>首页</a></li>\r\n";
    }
    if($this->PageNo!=$totalpage && $totalpage>1)
    {
        $nextpage.="<li><a href='".$purl."PageNo=$nextpagenum'>下一页</a></li>\r\n";
        $endpage="<li><a href='".$purl."PageNo=$totalpage'>末页</a></li>\r\n";
    }
    else
    {
        $endpage="<li><a>末页</a></li>";
    }
    //获得数字链接
    $listdd="";
    $total_list = $list_len * 2 + 1;
    if($this->PageNo >= $total_list)
    {
        $j = $this->PageNo - $list_len;
        $total_list = $this->PageNo + $list_len;
        if($total_list > $totalpage)
        {
            $total_list = $totalpage;
        }
    }
    else
    {
        $j=1;
        if($total_list > $totalpage)
        {
            $total_list = $totalpage;
        }
    }
    for($j; $j <= $total_list; $j++)
    {
        if($j == $this->PageNo)
        {
            $listdd.= "<li class=\"thisclass\"><a>$j</a></li>\r\n";
        }
        else
        {
            $listdd.="<li><a href='".$purl."PageNo=$j'>".$j."</a></li>\r\n";
        }
    }
    $plist = $indexpage.$prepage.$listdd.$nextpage.$endpage;
    return $plist;
}

仔细观察 普通模型中在28行左右的位置多了句$maininfo = "<li><span class=\"pageinfo\">共 <strong>{$totalpage}</strong>页<strong>".$this->TotalResult."</strong>条</span></li>\r\n";而在独立模型中则没有。

而且在最后,普通模型中将$maininfo的值加入了$plist字符串中。(更细节的地方是普通模型还判断了标签中是否有info属性来决定是否加入:


1

if(preg_match(‘/info/i‘, $listitem)) $plist .= $maininfo;

)独立模型中这些都省了。

要将独立模型修改过来很简单,不过“普通模型还判断了标签中是否有info属性来决定是否加入”这点我就不去实现了,这里不判断直接再任何情况下都加入maininfo:

/**
 *  获取动态的分页列表
 *
 * @access    public
 * @param     int  $list_len  列表宽度
 * @param     string  $listitem  列表样式
 * @return    string
 */
function GetPageListDM($list_len,$listitem="index,end,pre,next,pageno")
{
    global $nativeplace,$infotype,$keyword;
    if(empty($nativeplace)) $nativeplace = 0;
    if(empty($infotype)) $infotype = 0;
    if(empty($keyword)) $keyword = '';
    $prepage = $nextpage = '';
    $prepagenum = $this->PageNo - 1;
    $nextpagenum = $this->PageNo + 1;
    if($list_len=="" || preg_match("/[^0-9]/", $list_len))
    {
        $list_len=3;
    }
    $totalpage = ceil($this->TotalResult / $this->PageSize);
    if($totalpage<=1 && $this->TotalResult>0)
    {
        return "<span class=\"pageinfo\">共1页/".$this->TotalResult."条记录</span>";
    }
    if($this->TotalResult == 0)
    {
        return "<span class=\"pageinfo\">共0页/".$this->TotalResult."条记录</span>";
    }
    $maininfo = "<li><span class=\"pageinfo\">共 <strong>{$totalpage}</strong>页<strong>".$this->TotalResult."</strong>条</span></li>\r\n";
    $purl = $this->GetCurUrl();
    $geturl = "tid=".$this->TypeID."&TotalResult=".$this->TotalResult."&nativeplace=$nativeplace&infotype=$infotype&keyword=".urlencode($keyword)."&";
    $hidenform = "<input type='hidden' name='tid' value='".$this->TypeID."' />\r\n";

     $hidenform = "<input type='hidden' name='nativeplace' value='$nativeplace' />\r\n";
     $hidenform = "<input type='hidden' name='infotype' value='$infotype' />\r\n";
     $hidenform = "<input type='hidden' name='keyword' value='$keyword' />\r\n";

    $hidenform .= "<input type='hidden' name='TotalResult' value='".$this->TotalResult."' />\r\n";
    $purl .= "?".$geturl;
    //获得上一页和下一页的链接
    if($this->PageNo != 1)
    {
        $prepage.="<li><a href='".$purl."PageNo=$prepagenum'>上一页</a></li>\r\n";
        $indexpage="<li><a href='".$purl."PageNo=1'>首页</a></li>\r\n";
    }
    else
    {
        $indexpage="<li><a>首页</a></li>\r\n";
    }
    if($this->PageNo!=$totalpage && $totalpage>1)
    {
        $nextpage.="<li><a href='".$purl."PageNo=$nextpagenum'>下一页</a></li>\r\n";
        $endpage="<li><a href='".$purl."PageNo=$totalpage'>末页</a></li>\r\n";
    }
    else
    {
        $endpage="<li><a>末页</a></li>";
    }
    //获得数字链接
    $listdd="";
    $total_list = $list_len * 2 + 1;
    if($this->PageNo >= $total_list)
    {
        $j = $this->PageNo - $list_len;
        $total_list = $this->PageNo + $list_len;
        if($total_list > $totalpage)
        {
            $total_list = $totalpage;
        }
    }
    else
    {
        $j=1;
        if($total_list > $totalpage)
        {
            $total_list = $totalpage;
        }
    }
    for($j; $j <= $total_list; $j++)
    {
        if($j == $this->PageNo)
        {
            $listdd.= "<li class=\"thisclass\"><a>$j</a></li>\r\n";
        }
        else
        {
            $listdd.="<li><a href='".$purl."PageNo=$j'>".$j."</a></li>\r\n";
        }
    }
    $plist = $indexpage.$prepage.$listdd.$nextpage.$endpage;;
    return $plist;
}

本文为原创,转载请注明出处:

1.csdn :http://blog.csdn.net/jianghejie123/article/details/40026693

2.我的网站:http://jcodecraeer.com/a/phpjiaocheng/2014/1011/1741.html

时间: 2024-10-24 18:37:48

dedecms独立模型分页功能的完善的相关文章

dedecms独立模型分页功能的完好

dedecms事实上在架构方面没什么问题,可是预计里面有些功能是新手做的吧,有非常多待完好的地方,比方分页功能.从代码能够直接看出当时的负责人有敷衍了事的心里. dede的分页假设有两个页码显示的话,无法显示出总的文章数,举个样例: 在普通文章模型以下,列表的分页是这种: 可是在独立模型中就成了这样了 最后面的共*页*条的信息不见了.相信遇到这个问题的同学首先想到的是自己哪里用错了,事实上不是,dede独立模型这里的代码是偷工减料了的.处理独立模型列表的代码在arc.sglistview.cla

winform中DataGridView实现分页功能

http://liyaguang20111105.blog.163.com/blog/static/19929420220146283255809/ 在winform的设计中,要实现对DataGridView控件的分页功能,需要两个控件:BindingSource.BindingNavigator,根据需求可对BindingNavigator进行自由的扩展,下图的示例则是根据一般需求对分页功能的实现.红色区域是对BindingNavigator控件扩展后的效果. 具体实现过程 : //窗体构造方

简单封装分页功能pageView.js

分页是一个很简单,通用的功能.作为一个有经验的前端开发人员,有义务把代码中类似这样公共的基础性的东西抽象出来,一来是改善代码的整体质量,更重要的是为了将来做类似的功能或者类似的项目,能减少不必要的重复工作量.在实际项目中,尤其是网站类型的项目中,分页部分的设计总是个性化比较强,基本上都不会长的一样,所以可能之前抽象出来的东西,如果写的不够灵活的话,对这些个性化强的项目来说,可能直接应用的时候也得做些调整才行.本文尝试提供一个尽量满足这两方面要求的分页组件. 先介绍下写这个东西的背景:一直以来,我

最好用的兼容多种数据库通用高效的大数据分页功能

通用权限管理系统底层有一个通用分页查询功能,该功能可实现多种数据库的查询,支持多表关联分页查询,目前是最完善的分页功能实现. 下面代码是使用的方法截图: /////////////////////////////// 后台代码截图1 /////////////////////////////// 后台代码截图2 /////////////////////////////// 后台代码截图3 /////////////////////////////// 后台代码截图4 /////////////

sf中标准的分页功能介绍

世上本无事,庸人自扰之.我喜欢一个相对比较安静的环境去学习和工作,希望在一个掉一根针的声音都能够听到的环境中,但是有时候往往相反,一片嘈杂,我改变不了周围的环境,只能改变自己,其实这些都没有什么,也许是我内心就很嘈杂,使我听到一点点声音就感觉很烦躁.上善若水,心静则情静继而人静. 言归正传: sf中标准的分页功能: sf有自己标准的分页功能,sf真是个功能相当完善的云端开发平台,其有好多自己标准的功能,今天我就根据自己的理解先介绍一下sf标准的分页功能的皮毛. 定义关联到前台的Contet值 p

MVC5 Entity Framework学习之添加排序、筛选和分页功能

前一篇文章中实现了对Student 实体的的基本CRUD操作,在这篇文章中将演示如何为Students Index页面添加排序.筛选和分页的功能. 下面是当完成排序.筛选和分页功能后的截图,你可以点击列标题来进行排序. 1.为 Students Index页面添加列排序链接 要为Students Index页面添加排序功能,你需要修改Student controller的Index方法,并为Student Index视图添加代码. 向Index方法添加排序功能 打开Controllers\Stu

poscms基于list标签实现的查询分页功能

poscms系统本身有一个在查询页(search页面)实现的查询分页功能,基于系统封装的php函数dr_search_url() 但是今天的需求除了导航栏.列表页.详情页都实现查询功能外,关键是有两个不同的模块,模块不同,如果用 系统的search的话,那就得弄两个search页面出来,其实搜索结果页面完全就是照搬列表页,所以,我为什么不 直接用列表页作为模板呢,不去走系统的search控制器.下面上列表页: 1.筛选条件的获取以及查询页的路径拼接 <div class="paixu&qu

织梦添加自定义独立模型缩略图字段官方的一个BUG

dedecms织梦添加自定义独立模型时,官方程序默认会为你添加好这些字段,但是缩略图字段写错了,litpic写成了listpic ,改回来,保存就行了,不然dede:arclistsg无法获取缩略图数据. 按照下图,把listpic改成litpic即可. 原文地址:https://www.cnblogs.com/dedevip/p/9904476.html

第83节:Java中的学生管理系统分页功能

分页功能一般可以做成两种,一种是物理分页,另一种是逻辑分页.这两种功能是有各自的特点的,物理分页是查询的时候,对数据库进行访问,只是查一页数据就进行返回,其特点是对内存中数据量存储不大,只是缺点就是要对数据库不断的进行访问:而对逻辑分页来说,就有所不同,它是一下子就把所有的数据全部查询出来,然后放入到内存中,访问速度快,缺点就是对内存空间不足,数据量过大. select * from stu limit 5; // offset 偏移前面的多少条,offset 1 跳过前面的一条 select