将dede:List标签进行改造,使用sql标签实现静态分页,在自定义表单调用的分页用他就很方便
例如会员列表的模板标签写法
{dede:Listsql sql="select * from dede_member" pagesize="10"}<li><a href="[fIEld:ID runPHP=yes]$ID=@me;$url=GetoneArchive($ID);@me=$url['arcurl'][/fIEld:ID]"><img src="[fIEld:litpic/]">[fIEld:XX /]</a></li>{/dede:Listsql}<!--分页-->{dede:Pagelist/}
实现教程
打开include/arc.ListvIEw.class.PHP 找到
if(!is_object($ctag)){ $ctag = $this->dtp->GetTag("List");}
在下面加入
if(!is_object($ctag)){ $ctag = $this->dtp->GetTag("Listsql"); if(is_object($ctag)) { $cquery = $ctag->GetAtt("sql"); //$cquery = str_replace('~reID~',$this->ReID,$cquery); 这是另一个客户要求的获取url第2个参数才加的。 $cquery = preg_replace("/SELECT(.*?)FROM/is"," SELECT count(*) as dd FROM ",$cquery); $cquery = preg_replace("/ORDER(.*?)SC/is","",$cquery); $row = $this->dsql->Getone($cquery); if(is_array($row)) { $this->TotalResult = $row['dd']; } else { $this->TotalResult = 0; } }}
继续找到
else if($ctag->Getname()=="Pagelist")
在它上面加入
else if($ctag->Getname()=="Listsql"){ $limitstart = ($this->PageNo-1) * $this->PageSize; $row = $this->PageSize; if(trim($ctag->GetInnerText())=="") { $InnerText = GetSystemplets("List_fullList.htm"); } else { $InnerText = trim($ctag->GetInnerText()); } $this->dtp->Assign($tagID,$this->GetsqlList( $limitstart,$row,$ctag->GetAtt("sql"),$InnerText ));}
最后找到
function GetPagelistST(
在它上面加入
function GetsqlList($limitstart = 0,$row = 10,$sql = '',$innertext){ global $cfg_List_son; $innertext = trim($innertext); if ($innertext == '') { $innertext = GetSystemplets('List_fullList.htm'); } //处理SQL语句 $limitStr = " liMIT {$limitstart},{$row}"; $sql = str_replace('~reID~',$sql); $this->dsql->Setquery($sql . $limitStr); $this->dsql->Execute('al'); $t2 = ExecTime(); //echo $t2-$t1; $sqlList = ''; $this->dtp2->LoadSource($innertext); $GLOBALS['autoindex'] = 0; //获取字段 while($row = $this->dsql->GetArray("al")) { $GLOBALS['autoindex']++; if(is_array($this->dtp2->CTags)) { foreach($this->dtp2->CTags as $k=>$ctag) { if($ctag->Getname()=='array') { //传递整个数组,在runPHP模式中有特殊作用 $this->dtp2->Assign($k,$row); } else { if(isset($row[$ctag->Getname()])) { $this->dtp2->Assign($k,$row[$ctag->Getname()]); } else { $this->dtp2->Assign($k,''); } } } } $sqlList .= $this->dtp2->GetResult(); }//while $t3 = ExecTime(); //echo ($t3-$t2); $this->dsql->FreeResult('al'); return $sqlList;}
完成,注意代码放置的位置,有的是在上面有的是在下面。
总结以上是内存溢出为你收集整理的织梦用dede:sql实现列表页分页教程方法全部内容,希望文章能够帮你解决织梦用dede:sql实现列表页分页教程方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)