search
Homephp教程php手册php无限级分类实战评论及回复功能

php无限级分类实战——评论及回复功能

经常在各大论坛或新闻板块详情页面下边看到评论功能,当然不单单是直接发表评论内容那么简单,可以对别人的评论进行回复,别人又可以对你的回复再次评论或回复,如此反复,理论上可以说是没有休止,从技术角度分析很容易想到运用无限级分类技术存储数据,运用递归获取评论层级结构数据,运用ajax实现评论页面交互,这里用thinkphp框架做个简单的demo练练手,为了简化流程这里第三级评论不再提供回复功能,当然只要在这个基础上稍作修改就可以实现无限回复功能,主要是view层样式修改较麻烦,需花些时间。

一、效果需求分析:

在头部可以直接发布一级评论,最新发表的评论显示在最上面,如下效果图

对发表的评论可以回复,回复显示在上级评论下边,形成层级关系,如下效果图

页面操作细节:点击某个评论的回复按钮时,显示回复文本输入框,同时其他评论的回复文本输入框消失,当再次点击该回复按钮时,该文本框消失

在最后一级评论(这里设置是第三级)关闭回复功能

即时显示评论总数

二、实现思路及细节

1.数据表设计

2.controller层关键函数:

(1). 递归获取评论列表

<code class="hljs" php="">/**
*递归获取评论列表
   */
   protected function getCommlist($parent_id = 0,&$result = array()){       
    $arr = M(&#39;comment&#39;)->where(parent_id = &#39;.$parent_id.&#39;)->order(create_time desc)->select();   
    if(empty($arr)){
        return array();
    }
    foreach ($arr as $cm) {  
        $thisArr=&$result[];
        $cm[children] = $this->getCommlist($cm[id],$thisArr);    
        $thisArr = $cm;                                    
    }
    return $result;
   }</code>

(2). 展示评论页面的action

<code class="hljs" lasso="">public function index(){  
    $num =  M(&#39;comment&#39;)->count(); //获取评论总数
    $this->assign(&#39;num&#39;,$num);
      $data=array();
    $data=$this->getCommlist();//获取评论列表
    $this->assign(commlist,$data);
      $this->display(&#39;index&#39;);
  }</code>

(3).评论页面ajax访问添加评论的action

<code class="hljs" php="">/**
*添加评论
   */
   public function addComment(){            
    $data=array();
    if((isset($_POST[comment]))&&(!empty($_POST[comment]))){
        $cm = json_decode($_POST[comment],true);//通过第二个参数true,将json字符串转化为键值对数组
        $cm[&#39;create_time&#39;]=date(&#39;Y-m-d H:i:s&#39;,time());
        $newcm = M(&#39;comment&#39;);
        $id = $newcm->add($cm);

        $cm[id] = $id;
        $data = $cm;

        $num =  M(&#39;comment&#39;)->count();//统计评论总数
        $data[&#39;num&#39;]= $num;

    }else{
        $data[error] = 0;
    }


    echo json_encode($data);
   }</code>

3.view层实现

(1). 展示页面的整体结构设计


实际效果:

页面html代码:

<code class="hljs" xml="">
</code>

<!--发表评论区begin-->

<span>{$num}条评论</span>

<textarea class="txt-commit" replyid="0"></textarea>

<span >发表评论</span>

<!--发表评论区end--><!--评论列表显示区begin--><!-- {$commentlist} -->

<span>全部评论</span>

<!--一级评论列表begin-->

    • <span>{$data.nickname}</span> <span>{$data.create_time}</span>

      {$data.content}

      <!--二级评论begin-->
        • <span>{$child.nickname}</span> <span>{$child.create_time}</span>

          {$child.content}

          <!--三级评论begin-->
            • <span>{$grandson.nickname}</span> <span>{$grandson.create_time}</span>

              {$grandson.content}

          •  
          •  
          <!--三级评论end-->
      •  
      •  
      <!--二级评论end-->
  •  
  •  
<!--一级评论列表end--> <!--评论列表显示区end-->

(2). 单个评论信息div结构代码


<span>{$data.nickname}</span> <span>{$data.create_time}</span>

{$data.content}

对应的效果图:

对应的css代码:

<code class="hljs" css="">.head-pic{
    width:40px;
    height:40px;    
}

.cm{
    position:relative;
    top:0px;
    left:40px;
    top:-40px;
    width:600px;
}

.cm-header{
    padding-left:5px;
}

.cm-content{
    padding-left:5px;
}

.cm-footer{
    padding-bottom:15px;
    text-align:right;
    border-bottom: 1px dotted #CCC;
}

.comment-reply{
    text-decoration:none;
    color:gray;
    font-size: 14px;
}</code>

4. JS代码

(1). 提交评论:提交评论的a标签按钮引用了样式comment-submit,在其点击事件中进行ajax操作

<code class="hljs" xml="">$(&#39;body&#39;).delegate(&#39;.comment-submit&#39;,&#39;click&#39;,function(){   
        var content = $.trim($(this).parent().prev().children(textarea).val());//根据布局结构获取当前评论内容
        $(this).parent().prev().children(textarea).val();//获取完内容后清空输入框
        if(==content){
            alert(评论内容不能为空!);     
        }else{
            var cmdata = new Object();
            cmdata.parent_id = $(this).attr(parent_id);//上级评论id
            cmdata.content = content;
            cmdata.nickname = 游客;//测试用数据
            cmdata.head_pic = /Public/images/default.jpg;//测试用数据              
            var replyswitch = $(this).attr(replyswitch);//获取回复开关锁属性
            $.ajax({
                type:POST,
                url:/index.php/home/index/addComment,
                data:{
                    comment:JSON.stringify(cmdata)              
                },
                dataType:json,            
                success:function(data){
                    if(typeof(data.error)==undefined){
                        $(.comment-reply).next().remove();//删除已存在的所有回复div    
                        //更新评论总数                        
                        $(.comment-num).children(span).html(data.num+条评论);
                        //显示新增评论
                        var newli = ;                     
                        if(cmdata.parent_id == 0){
                         //发表的是一级评论时,添加到一级ul列表中                      
                         newli = </code>
  • <span>+data.nickname+</span><span>+data.create_time+</span>

    +data.content+

  • ; $(.comment-ul).prepend(newli); }else{ //否则添加到对应的孩子ul列表中 if('off'==replyswitch){//检验出回复关闭锁存在,即三级评论不再提供回复功能 newli =
    • <span>+data.nickname+</span><span>+data.create_time+</span>

      +data.content+

    • ; }else{//二级评论的回复按钮要添加回复关闭锁属性 newli =
      • <span>+data.nickname+</span><span>+data.create_time+</span>

        +data.content+

      • ; } $(li[comment_id='+data.parent_id+']).children(ul).prepend(newli); } }else{ //有错误信息 alert(data.error); } } }); } });

        (2).回复评论:回复评论的a标签按钮引用了样式comment-reply,在其点击事件中进行显示或隐藏评论输入框的操作

        <code class="hljs" scilab="">//点击回复按钮显示或隐藏回复输入框
            $(body).delegate(.comment-reply,click,function(){
                if($(this).next().length>0){//判断出回复div已经存在,去除掉
                    $(this).next().remove();
                 }else{//添加回复div
                    $(.comment-reply).next().remove();//删除已存在的所有回复div    
                    //添加当前回复div
                    var parent_id = $(this).attr(comment_id);//要回复的评论id
        
                    var divhtml = ;
                    if(&#39;off&#39;==$(this).attr(replyswitch)){//二级评论回复后三级评论不再提供回复功能,将关闭属性附加到提交回复按钮
                        divhtml = </code>

        <textarea class="txt-reply" replyid="2" style="width: 100%; height: 60px;"></textarea>

        提交回复

        ; }else{ divhtml =

        <textarea class="txt-reply" replyid="2" style="width: 100%; height: 60px;"></textarea>

        提交回复

        ; } $(this).after(divhtml); } });

         

        <code> </code>
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
手把手教你uniapp和小程序分包(图文)手把手教你uniapp和小程序分包(图文)Jul 22, 2022 pm 04:55 PM

本篇文章给大家带来了关于uniapp跨域的相关知识,其中介绍了uniapp和小程序分包的相关问题,每个使用分包小程序必定含有一个主包。所谓的主包,即放置默认启动页面/TabBar 页面,以及一些所有分包都需用到公共资源/JS 脚本;而分包则是根据开发者的配置进行划分,希望对大家有帮助。

MySQL表设计实战:创建一个电商订单表和商品评论表MySQL表设计实战:创建一个电商订单表和商品评论表Jul 03, 2023 am 08:07 AM

MySQL表设计实战:创建一个电商订单表和商品评论表在电商平台的数据库中,订单表和商品评论表是两个非常重要的表格。本文将介绍如何使用MySQL来设计和创建这两个表格,并给出代码示例。一、订单表的设计与创建订单表用于存储用户的购买信息,包括订单号、用户ID、商品ID、购买数量、订单状态等字段。首先,我们需要创建一个名为"order"的表格,使用CREATET

Golang实战:数据导出功能的实现技巧分享Golang实战:数据导出功能的实现技巧分享Feb 29, 2024 am 09:00 AM

数据导出功能在实际开发中是非常常见的需求,特别是在后台管理系统或者数据报表导出等场景中。本文将以Golang语言为例,分享数据导出功能的实现技巧,并给出具体的代码示例。1.环境准备在开始之前,确保已经安装好Golang环境,并且熟悉Golang的基本语法和操作。另外,为了实现数据导出功能,可能还需要使用第三方库,比如github.com/360EntSec

Java开发实战:集成七牛云云存储服务实现文件上传Java开发实战:集成七牛云云存储服务实现文件上传Jul 06, 2023 pm 06:22 PM

Java开发实战:集成七牛云云存储服务实现文件上传引言随着云计算和云存储的发展,越来越多的应用程序需要将文件上传至云端进行存储和管理。云存储服务的优势在于高可靠性、可扩展性和灵活性。本文将介绍如何使用Java语言开发,集成七牛云云存储服务,实现文件上传功能。七牛云简介七牛云是国内领先的云存储服务提供商,其提供了全面的云存储和内容分发服务。用户可以通过七牛云提

深入学习 Elasticsearch 查询语法与实战深入学习 Elasticsearch 查询语法与实战Oct 03, 2023 am 08:42 AM

深入学习Elasticsearch查询语法与实战引言:Elasticsearch是一款基于Lucene的开源搜索引擎,主要用于分布式搜索与分析,广泛应用于大规模数据的全文搜索、日志分析、推荐系统等场景。在使用Elasticsearch进行数据查询时,灵活运用查询语法是提高查询效率的关键。本文将深入探讨Elasticsearch查询语法,并结合实际案例给出

Vue实战:日期选择器组件开发Vue实战:日期选择器组件开发Nov 24, 2023 am 09:03 AM

Vue实战:日期选择器组件开发引言:日期选择器是在日常开发中经常用到的一个组件,它可以方便地选择日期,并提供各种配置选项。本文将介绍如何使用Vue框架来开发一个简单的日期选择器组件,并提供具体的代码示例。一、需求分析在开始开发之前,我们需要进行需求分析,明确组件的功能和特性。根据常见的日期选择器组件功能,我们需要实现以下几个功能点:基础功能:能够选择日期,并

MySQL表设计实战:创建一个电影信息表和演员表MySQL表设计实战:创建一个电影信息表和演员表Jul 01, 2023 pm 08:16 PM

MySQL表设计实战:创建一个电影信息表和演员表导语:在数据库设计中,表的创建是一个非常关键的环节。本文将以电影信息表和演员表为例,详细介绍如何进行MySQL表的设计和创建,并附上相应的代码示例。一、电影信息表设计和创建电影信息表是用来存储电影的相关信息,包括电影名称、导演、上映时间、电影类型等字段。下面是电影信息表的设计和创建过程,首先我们需要选择合适的字

Git开发实战:项目经验分享与总结Git开发实战:项目经验分享与总结Nov 04, 2023 pm 12:32 PM

Git是一款分布式版本控制系统,广泛应用于软件开发领域。在实际的项目开发中,合理利用Git进行团队协作和版本管理,能够极大地提高开发效率和项目质量。本文将分享我在Git开发中的实战经验,并总结一些注意事项和技巧,希望对读者有所启发和帮助。一、团队协作之分支管理在多人协作的项目中,充分利用Git的分支管理功能,能够更好地进行团队协作和版本控制。通常情况下,主干

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software