tp3.2分页问题

浏览:5120 发布日期:2014/03/28 分类:功能实现
Call to undefined method stdClass::setConfig() 哪里有问题
Call to undefined method stdClass::setConfig()

<?php
// 本类由系统自动生成,仅供测试用途
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function index(){

//import('ORG.Util.Page');// 导入分页类
$Form = M('feilong');
$count = $Form->count(); //计算总数
$page = new \Think\Page($count,3);
$list = $Form->limit($Page->firstRow. ',' . $Page->listRows)->order('id desc')->select();
// 模拟设置分页额外传入的参数
$Page->parameter = 'search=key&name=thinkphp';

// 设置分页显示
$Page->setConfig('header', '条数据');
$Page->setConfig('first', '<<');
$Page->setConfig('last', '>>');
$page = $Page->show();

$this->display(); // 输出模板

}
}
评论( 相关
后面还有条评论,点击查看>>