Home  >  Article  >  Backend Development  >  thinkphp分页页码不显示(数据足够),该怎么解决

thinkphp分页页码不显示(数据足够),该怎么解决

WBOY
WBOYOriginal
2016-06-13 12:19:311548browse

thinkphp分页页码不显示(数据足够)
    
public function trends( ) {

      $showtrends = M('Trends');

        import('ORG.Util.Page');

     $showscount = $showtrends->count();

        $Page = new Page($trendscount,3);


        $show = $Page->show();

        $list = $showtrends->limit($Page->firstRow.','.$Page->listRows)->select();

     $this->assign('trends',$list);

        $this->assign('page',$show);

     //dump($show);
     //exit();

    $this->display();
    }

分页效果能出来,但分页页码不显示,dump($show)数据为空,这是怎么回事呢
------解决思路----------------------
你用的时TP几点几的系统?如果是新的那你的import就是无效的,因为最新的都采用了命名空间。
------解决思路----------------------
另一个可以,这个却不可以
显然你有哪里弄得不对!流程没有问题的话,就是参数不对。还有就是模板是否对
使用 TP 提供的功能,只需按他的格式走,没有什么可调试的地方(傻瓜方式)

------解决思路----------------------
  把这个  $Page = new Page($trendscount,3);
改成     $Page = new Page($showscount ,3);

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