ecshop 后台分页功能
Ecshop分页规则,分以下几个步骤
1.点击类别,获取第一页获取默认分类列表数据
2.点击“下一页”,采用ajax调取分页内容
实例分析(比如订单列表分页admin/order.php)
1.先写一个function order_list() 模块,里面要包括可以进行排序,分页,查询等功能
2.在order.php里面写一个elseif ($_REQUEST['act'] == 'list') ,这里是显示默认分页数据
3.在order.php写一个query(listtable.js默认的是先读取$_REQUEST['act'] == 'query')排序、分页、查询都在query里面完成
4.html页面(默认order_list.html完整代码)
实战 ”微仓功能“
1.我先写一个function depot_log_list,可以进行排序、分类、查询。这个function里面很有讲究的
重点代码
function depot_list()
{
//*f.获取上一次保存的查询条件(如果上一次有进行查询过,则直接从f开始)
$result = get_filter();
if ($result === false) {
// a.查询条件
$filter['goods_id'] = empty($_REQUEST['goods_id']) ? '' : trim($_REQUEST['goods_id']);
//b.记录总条数
$filter['record_count'] = $GLOBALS['db']->getOne("SELECT COUNT(*) FROM " . $GLOBALS['ecs']->table('depot_log') . $ex_where); //c.分页大小
$filter = page_and_size($filter);
//d.查询的sql
$sql = "SELECT * FROM " . $GLOBALS['ecs']->table('depot_log') . $ex_where .
" order by createtime desc LIMIT " . $filter['start'] . ',' . $filter['page_size'];
//e.保存查询条件(cookie保存)
set_filter($filter, $sql);
}
else
{
//*f.获取上一次保存的查询条件(如果没有进行查询过,则从a查询。)
$sql = $result['sql'];
$filter = $result['filter'];
} $depot_list = $GLOBALS['db']->getAll($sql); //g.组合成系统默认查询条件
$arr = array('depot_list' => $depot_list, 'filter' => $filter,
'page_count' => $filter['page_count'], 'record_count' => $filter['record_count']); return $arr;
}
e.f这两步骤非常的重要,还有if($result===false){}也非常重要
实例代码
function depot_list()
{
$result = get_filter(); if ($result === false)
{
$filter['user_id'] = empty($_REQUEST['user_id']) ? '' : trim($_REQUEST['user_id']);
$filter['goods_stock'] = empty($_REQUEST['goods_stock']) ? '' : intval($_REQUEST['goods_stock']); $filter['sort_by'] = empty($_REQUEST['sort_by']) ? 'goods_stock' : trim($_REQUEST['sort_by']); // js的listTable.sort排序功能,也可以user_id
$filter['sort_order'] = empty($_REQUEST['sort_order']) ? 'DESC' : trim($_REQUEST['sort_order']); $ex_where = ' WHERE 1 ';
$ex_where .=" AND user_id = '$filter[user_id]' "; $filter['record_count'] = $GLOBALS['db']->getOne("SELECT COUNT(*) FROM " . $GLOBALS['ecs']->table('depot') . $ex_where); /* 分页大小 */
$filter = page_and_size($filter);
$sql = "SELECT * FROM " . $GLOBALS['ecs']->table('depot') . $ex_where .
" ORDER by " . $filter['sort_by'] . ' ' . $filter['sort_order'] .
" LIMIT " . $filter['start'] . ',' . $filter['page_size']; // $filter['keywords'] = stripslashes($filter['keywords']);
set_filter($filter, $sql);
}
else
{
$sql = $result['sql'];
$filter = $result['filter'];
} $depot_list = $GLOBALS['db']->getAll($sql);
foreach($depot_list as $k=>$v){
$sql = "SELECT goods_name,goods_thumb from ".$GLOBALS['ecs']->table('goods')." where goods_id = ".$v['goods_id'];
$re = $GLOBALS['db']->getRow($sql);
$depot_list[$k]['name'] = $re['goods_name'];
$depot_list[$k]['goods_thumb'] = $re['goods_thumb']; } $arr = array('depot_list' => $depot_list, 'filter' => $filter,
'page_count' => $filter['page_count'], 'record_count' => $filter['record_count']); return $arr;
}
2.写一个列表
实例代码
elseif($_REQUEST['act'] == 'depot_log'){
$smarty->assign('ur_here', '个人微仓操作记录'); $depot = depot_log_list(); //print_r($depot);
$smarty->assign('depot_log', $depot['depot_list']);
$smarty->assign('filter', $depot['filter']);
$smarty->assign('record_count', $depot['record_count']);
$smarty->assign('page_count', $depot['page_count']);
$smarty->assign('full_page', ); assign_query_info();
$smarty->display('depot_log_list.htm');
}
3.写一个列表查询(这里的depot_log_query ,还可以承接html页面的<a href="javascript:listTable.sort('goods_stock', 'DESC'); ">)
/*会员微仓 ajax 翻页调用*/
elseif ($_REQUEST['act'] == 'depot_list_query'){ $depot = depot_list();
//$depot = user_list(); $smarty->assign('depot', $depot['depot_list']);
$smarty->assign('filter', $depot['filter']);
$smarty->assign('record_count', $depot['record_count']);
$smarty->assign('page_count', $depot['page_count']); $sort_flag = sort_flag($depot['filter']);
$smarty->assign($sort_flag['tag'], $sort_flag['img']); make_json_result($smarty->fetch('depot_list.htm'), '', array('filter' => $depot['filter'], 'page_count' => $depot['page_count'])); // 注意此处的结构,缺少mke_json_result不行
}
4.html页面html代码
<table cellpadding="" cellspacing="">
<tr>
<th width="">
<input onclick='listTable.selectAll(this, "checkboxes")' type="checkbox">
{$lang.record_id}{$sort_user_id}
</th>
<th width="">缩略图</th>
<th>商品名称</th>
<th><a href="javascript:listTable.sort('order_amount', 'DESC'); ">库存</a></th>
<th>{$lang.handler}</th>
<tr>
{foreach from=$depot item=vo}
<tr>
<td><input type="checkbox" name="checkboxes[]" value="{$vo.id}" notice="{if $user.user_money ne 0}1{else}0{/if}"/>{$vo.id}</td>
<td class="first-cell"><a href="../goods.php?id={$vo.id}" target="_blank"><img src="../{$vo.goods_thumb}" width= style="border: 1px solid #eee"/></a></td>
<td><span onclick="listTable.edit(this, 'edit_email', {$user.user_id})"><a href="../goods.php?id={$vo.id}" target="_blank">{$vo.goods_name}</a></span></td>
<td align="center">{$vo.goods_stock}</td>
<td align="center"> <a href="users.php?act=depot_log&user_id={$vo.user_id}&goods_id={$vo.goods_id}" title="查看记录"><img src="data:images/icon_view.gif" border="" height="" width="" /></a> </td>
</tr>
{foreachelse}
<tr><td class="no-records" colspan="">{$lang.no_records}</td></tr>
{/foreach}
<tr>
<td colspan="">
<input type="hidden" name="act" value="batch_remove" />
<input type="submit" id="btnSubmit" value="{$lang.button_remove}" disabled="true" class="button" /></td>
<td align="right" nowrap="true" colspan="">
{include file="page.htm"}
</td>
</tr>
</table>
js代码
{if $full_page}
</div>
<!-- end users list -->
</form>
<script type="text/javascript" language="JavaScript">
<!--
listTable.recordCount = {$record_count};
listTable.pageCount = {$page_count}; {foreach from=$filter item=item key=key}
listTable.filter.{$key} = '{$item}';
{/foreach} {literal}
onload = function()
{
//document.forms['searchForm'].elements['keyword'].focus();
// 开始检查订单
startCheckOrder();
//a.listtable.js默认是listTable.query="query",也就是order.php页面的elseif ($_REQUEST['act'] == 'query')
如果不想只想默认的$_REQUEST['act']=='query',就需要写上以下代码
listTable.query = "depot_list_query"; 默认载入使用(第一次点击列表)
} /**
* 搜索用户
*/
function searchUser()
{
//listTable.filter['keywords'] = Utils.trim(document.forms['searchForm'].elements['keyword'].value);
listTable.filter['page'] = ;
// b.与a作用一样
listTable.query = "depot_list_query"; 承接上一次查询条件
listTable.loadList();
} //-->
</script>
{/literal}
{include file="pagefooter.htm"}
{/if}
如果改变了,默认的query查询;则a,b两处都不可以少
分页实例化结构代码
Array
(
[depot_list] => Array
(
[] => Array
(
[id] =>
[user_id] =>
[goods_id] =>
[goods_stock] =>
[goods_name] => 荷兰Nutrilon牛栏奶粉
) [] => Array
(
[id] =>
[user_id] =>
[goods_id] =>
[goods_stock] =>
[goods_name] =>
) ) [filter] => Array
(
[user_id] =>
[record_count] =>
[page_size] =>
[page] =>
[page_count] =>
[start] =>
) [page_count] =>
[record_count] =>
)
ecshop 后台分页功能的更多相关文章
- ecshop后台分页浅析
既然是分页,道理都是一样的,不过ecshop前台分页的函数和后台分页的函数不同,后台分页函数为page_and_size(),在admin/includes/lib_main.php里.都是用aj ...
- 让ecshop编辑器功能更强大
ecshop后台的商品编辑和文章编辑使用的是FCKEDITOR 编辑器, 这个FCKEDITOR的工具条(toolbar)是可以自定义的,ECSHOP默认使用的是 normal ,属于中档功能, 下面 ...
- ecshop 邮件功能
1.邮件服务器设置(配置好了,在本地和虚拟主机都可以使用) a.163邮箱配置 b.QQ邮箱配置 2.关注管理(客户关注了某以商品,就可以给客户发送邮件) 3.邮件订阅管理,数据表:ecs_email ...
- 使用datatables实现后台分页功能,减轻前端渲染压力
注意不同版本,参数名字及参数内容存在差异,具体可以参考https://datatables.net/upgrade/1.10-convert#Options 控制页面显示的参数:https://dat ...
- ecshop后台通过ajax搜索原理
ecshop的搜索其实是功能十分强大的,但是ecshop搜索功能前台和后台还不大一样,前台主要是通过get方式,提交的url进行分页,而在ecshop的后台,则是接受表单的搜索条件,然后通过js发布到 ...
- 2014年4月份第2周51Aspx源码发布详情
HFC代码转化工具源码 2014-4-8 [VS2010]源码描述:HFC代码转化工具源码 1.主要实现HTML代码转化为C#或者JS代码,为我们平时编码节省时间. 2.把代码复制到面板上,通过右键 ...
- asp.net微信开发第三篇----自定义会话管理
和微信用户的沟通少不了,总觉得看起来微信官网后台管理中的会话回复消息有点呆板,所以我这里就自定义了一个会话管理功能,最终效果图如下: 因为我试使用富文本文件CKEDITOR来进行编写,你看到稳中可能会 ...
- jqery-easyui的Datagrid的介绍-Pagination事件
Datagrid(数据表) 依赖的组件 resizable linkbutton pagination DataGrid Options对象的属性 名称(Name) 类型(Type) 描述(Descr ...
- Selenium(4)
练习1:使用selenium+firefox测试ecshop登录过程 一.WebDriver 1.启动浏览器 (1)启动Firefox浏览器 a.启动默认路径下的浏览器 WebDriver drive ...
随机推荐
- oh-my-zsh主题
什么是ZSH Zsh和bash一样,是一种Unix shell,但大多数Linux发行版本都默认使用bash shell.但Zsh有强大的自动补全参数.文件名.等功能和强大的自定义配置功能. 一.安装 ...
- 跨云应用部署第一步:使用IPSEC VPN连接AWS中国版和Windows Azure中国版
随着公有云的普及,越来越多的客户将关键应用迁移到云端.但是事实证明,没有哪家云服务提供商可以提供100%的SLA,无论是例行维护还是意外中断服务,对于客户的关键应用而言,都会受到不同程度的影响.此外, ...
- [转]ASP.NET Core 之 Identity 入门(三)
本文转自:http://www.cnblogs.com/savorboard/p/aspnetcore-identity3.html 前言 在上一篇文章中,我们学习了 CookieAuthentica ...
- OAuth协议——PHP第三方登陆协议
慕课网Badguy老师的良心课程! 总会有那种什么都不想干的时候,但现在的日子又不这么允许个人的放纵,我一般就只有这几个选择:看课程视频,看书,看小说..好像还是有可以做的事情.其中,看课程视频有点无 ...
- java设计模式之组合模式
组合模式 组合模式,将对象组合成树形结构以表示“部分-整体”的层次结构,组合模式使得用户对单个对象和组合对象的使用具有一致性.掌握组合模式的重点是要理解清楚 “部分/整体” 还有 ”单个对象“ 与 & ...
- 【转载】Web移动端Fixed布局的解决方案
特别声明:本文转载于EFE的<Web移动端Fixed布局的解决方案>.如需转载,烦请注明原文出处:http://efe.baidu.com/blog/mobile-fixed-layout ...
- A book to recommend: The art of readable code
我最喜欢的一本书 - 教我如何写可读的代码 Two month fan of the book, from August - Oct. 2014; and then, started to pract ...
- UI自动化,你值得拥有
去年春节联欢晚会,为了那张“敬业福”,全家都卯足了劲儿“咻一咻”,连节目都顾不上看了.当时我就想,要是能自动化该多好,不停点击屏幕,屏幕不疼手还疼呢,何况还不好分心,生怕错过了“敬业福”.玩“咻一咻” ...
- Spring中的JDK动态代理
Spring中的JDK动态代理 在JDK1.3以后提供了动态代理的技术,允许开发者在运行期创建接口的代理实例.在Sun刚推出动态代理时,还很难想象它有多大的实际用途,现在动态代理是实现AOP的绝好底层 ...
- 概率dp学习
预备知识 一.期望的数学定义 如果X 是一个离散的随机变量,输出值为 x1, x2, ..., 和输出值相应的概率为p1, p2, ... (概率和为 1), 那么期望值为E(x)=x1p1+x2p2 ...