Home  >  Article  >  php教程  >  tp3.2分页问题

tp3.2分页问题

WBOY
WBOYOriginal
2016-06-07 11:42:111060browse

Call to undefined method stdClass::setConfig() 哪里有问题
Call to undefined method stdClass::setConfig()

// 本类由系统自动生成,仅供测试用途
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(); // 输出模板

}
}

AD:真正免费,域名+虚机+企业邮箱=0元

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