dede查询列表中单独显示查到了多少条记录

旺仔牛奶有点甜 技术杂谈评论19阅读模式

事情:

查询列表中需要在醒目的地方单独显示查到了多少条记录。无奈dede没有提供,只有自动动手搞。

解决:

1. 找到include/arc.searchview.class.php 文件 ,找到 Display()函数,添加如下判断

代码如下:
else if($tagname==”totalcount”)
{
$this->dtp->Assign($tagid,$this->GetTotalResult());
}

2.外部添加GetTotalResult()函数,函数如下:

代码如下:
function GetTotalResult()
{
return $this->TotalResult;
}

3.模板也调用:

代码如下:
{dede:totalcount/}

 
旺仔牛奶有点甜
  • 本文由 旺仔牛奶有点甜 发表于 2024年 3月 14日 21:11:04
  • 转载请务必保留本文链接:https://blog.chunchunhd.com/1700.html
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定

拖动滑块以完成验证