按照开发手册来做,
$list = $sql->where('hd_news.typeid=hd_type.typeid="'.$typeid.'" and newskey REGEXP"'. $key.'"')->limit($Page->firstRow.','.$Page->listRows)->select();
$this->assign('list',$list);// 赋值数据集
$this->assign('page',$show);// 赋值分页输出
$this->display(); // 输出模板
------------------------------------------------
<volist name="list" id="v">
<h1>{$v.ti
tle}</h1>
<p>内容有:{$v.content}</p>
</volist>
{$page}
-------------------
第一页的URL是http://localhost/news/index.php/Home/Index/link.html,
点击下一页的时候页面URL变为http://localhost/news/index.php/Home/Index/link/p/2.html,而且是空白页面。可能是分页路由的问题,新手不会,求大神解答。