Thinkphp搜索时首页分页和搜索页保持条件分页的方法
本文实例讲述了thinkphp实现搜索时首页分页和搜索页保持条件分页的方法。分享给大家供大家参考。具体实现方法如下:
在做搜索查询时突然发现在首页用的分页代码在搜索页使用时出现错误,首页分页代码(代码中标注start与end部分为分页代码)
$res=d('info');// 实例化data数据对象
/**********start************/
import('org.util.page');// 导入分页类
$count= $res->count();// 查询满足要求的总记录数
$page = new page($count,3);// 实例化分页类 传入总记录数(另一个参数为自定义分页条数)
//$page->rollpage = 3;//默认情况下,页面显示的页数是5 可以修改
$show= $page->show();// 分页显示输出
// 进行分页数据查询
$list = $res->order('iid desc')->limit($page->firstrow.','.$page->listrows)->select();
/**********end************/
$this->assign('list',$list);// 赋值数据集
/*********start*************/
$this->assign('page',$show);// 赋值分页输出
/*********end*************/
$this->display(); // 输出模板
}
搜索代码(代码中start与end之间标注的部分为分页代码,注释标注了分页跳转时保存查询条件),以下两种方法都可以保存条件(不清楚这样是不是写的规范),查询:
$res=d('info');
$name=$_request['name'];
$sear['name'] = array('like','%'.$name.'%');
/*********start*************/
import('org.util.page');// 导入分页类
$count=$res->where($sear)->count();//查询数据条数
$page=new page($count,2);//实例化分页函数
/*********end*************/
//分页跳转的时候保存查询条件
foreach($sear as $key=>$val) {
$page->parameter .= "$key=".urlencode($name)."&";//赋值给page
}
/*********start*************/
$show=$page->show();//分页显示输出
// 进行分页数据查询
$val=$res->where($sear)->$val=$res->where($sear)->limit($page->firstrow.','.$page->listrows)->select();
/*********end*************/
$this->assign('search',$val);
/*********start*************/
$this->assign('page',$show);
/*********end*************/
$this->display();
}
注:
$page->parameter .= "$key=".urlencode($name)."&";//赋值给page
}
"$key=".urlencode($name)."&";
第二种:
$res=d('info');
$name=$_request['name'];
$sear['name'] = array('like','%'.$name.'%');
import('org.util.page');// 导入分页类
$count=$res->where($sear)->count();//查询数据条数
$page=new page($count,2);//实例化分页函数
//分页跳转的时候保证查询条件
foreach($sear as $key=>$val) {
$page->parameter .= "$key=".urlencode($val[1]).'&';
}
$show=$page->show();//分页显示输出
// 进行分页数据查询
$val=$res->where($sear)->limit($page->firstrow.','.$page->listrows)->select();
$this->assign('search',$val);
$this->assign('page',$show);
$this->display();
}
使用$val[1]是因为$sear是一个数组,而$val[1]对应的是我要查找的条件,这样就可以保持条件进行分页了.
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》及《thinkphp常用方法总结》
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
上一篇: MAC把桌面上分散的程序整理到spaces中的方法
下一篇: ajax跨域请求js拒绝访问的解决方法