Home  >  Article  >  Backend Development  >  TP框架问题,第二次发帖,大家来帮忙!

TP框架问题,第二次发帖,大家来帮忙!

WBOY
WBOYOriginal
2016-06-20 12:27:28992browse

为什么这里的“首页”两个字没有显示出来呢?
$counts=$stars->count();

$Page=new \Think\Page($counts,10);//实例化分页类,传入总记录数和每页显示的纪录数(25)

$Page->lastSuffix=false;//最后一页不显示总页数

$Page->setConfig('header','

  • %NOW_PAGE% / %TOTAL_PAGE%页
  • ');

    $Page->setConfig('first','首页');

    $Page->setConfig('prev','上一页');

    $Page->setConfig('next','下一页');

    $Page->setConfig('last','末页');

    $Page->setConfig('theme','%FIRST% %UP_PAGE% %HEADER% %DOWN_PAGE% %END%');

    $show=$Page->show();//分页显示输出

    $data=$stars->order('uptime asc')->limit($Page->firstRow.','.$Page->listRows)->select();//进行分页数据查询

    $this->assign('page',$show);//赋值分页输出

    $this->assign("photoshow",$data);

            $this->display("Index:twohundred");
        }
    }


    回复讨论(解决方案)

    模板里没有 first 变量

    那我想要得到出现“首页”两个字的结果,要怎么做呢???

    但是第七页之后“首页”两个字才出现哦,怎么回事呢?

    $Page->show();
    去这里找原因

    哥,怎么找法,给点建议呗!

    TP框架碰到过分页类的bug,进去跟踪修复一下就好了

    代码没问题
    参考评论: http://www.thinkphp.cn/topic/29375.html

    但是第七页之后“首页”两个字才出现哦,怎么回事呢?



    第几页 出现【首页】 由这个参数觉得 你可以从这个上面入手

    tp分页类源码

    '%FIRST% %UP_PAGE% %HEADER% %DOWN_PAGE% %END%' 加个 %LINK_PAGE% 就可以了

    Statement:
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn