BBS-评论功能

BBS-评论功能

BBS-评论功能_第1张图片

前端搭建

1、参考画面,编辑评论区有以下要素:

  • 昵称:

    昵称:

  • 评论内容:

     
  • 提交按钮:

{# 前端品评论区搭建 #}

{% if request.user.is_authenticated %}
    

发布评论

昵称:

评论内容:

{% endif %}

2、评论楼的页面搭建

  • 后端传送来所有的评论列表:comment_list

5d10b575a1d9657786.png

  • 根据提示例子:

    利用for循环搭建页面吧

    每层的内容固定有

    • 楼层号:
    #{{ forloop.counter }}楼
    • 发布时间:
    {{ comment.create_time|date:'Y-m-d' }}
    • 发布用户
    {{ comment.user.username }}
    • 回复按钮(涉及到子评论内容)
    回复
    • 评论内容

      如果是子评论的话需要在评论内容加上:@+用户名

    {% if comment.parent %}

    @ {{ comment.parent.user.username }}

    {% endif %} {{ comment.content }}
  • 完整代码

      {% for comment in comment_list %}
    • #{{ forloop.counter }}楼 {{ comment.create_time|date:'Y-m-d' }} {{ comment.user.username }} 回复
      {% if comment.parent %}

      @ {{ comment.parent.user.username }}

      {% endif %} {{ comment.content }}
    • {% endfor %}

3、前端js代码

  • 提交按钮功能

    • 提交按钮获取所有的数据内容,用户id,评论id通过ajax发送给后端

    • 定义一个全局变量的parentId

    • 注意当为子评论的时候需要对评论的内容进行切分

      if (parentId){
          let indexVal = $content.indexOf('\n') + 1;
          $content = $content.slice(indexVal);
          console.log($content)
      }
    • ajax功能编写

      // 评论逻辑代码
      // 定义一个全局的parentId变量名
      let parentId = '';
      $('#id_submit').click(function () {
          // 获取textarea内容
          let $content = $('#id_comment').val();
          // 判断parentId是否有值才能确定是否切内容
          if (parentId){
              let indexVal = $content.indexOf('\n') + 1;
              $content = $content.slice(indexVal);
              console.log($content)
          }
          $.ajax({
              url: '/comment/',
              type: 'post',
              data: {
                  'article_id': '{{ article_obj.pk }}',
                  'content': $content,
                  'csrfmiddlewaretoken': '{{ csrf_token }}',
                  'parent_id': parentId,
              },
              success: function (data) {
                  if(data.code == 100){
                      let userName = '{{ request.user.username }}';
                      let content = $content;
                      let tempStr = `
                      
    • ${userName}:

      ${content}

    • `; // 查找url标签 添加子元素 $(".list-group").append(tempStr); // 将textarea框中的内容清空 $('#id_comment').val(''); // 将全局的parentId清空 parentId = '' } } }) });
  • 回复功能按钮

    • 子评论需要将用户名的加入到textarea中,如何获取人名

      let pUserName = $(this).attr('username');
      let pCommentId = $(this).attr('comment_id');
    • 自动换行

      $('#id_comment').val('@'+pUserName+'\n');
    • 自动对焦

      $('#id_comment').focus();
    • 将全局的parent_id赋值

      parentId = pCommentId;

后端:

  • 获取前端发来的数据

    article_id = request.POST.get("article_id")
    content = request.POST.get('content')
    parent_id = request.POST.get('parent_id')
    
  • 检查用户是否登录

            if request.user.is_authenticated():
                with transaction.atomic():
                    # 在文章表中将普通的评论字段加1
                    models.Article.objects.filter(pk=article_id).update(comment_num = F('comment_num')+1)
                    # 在去评论表存储真正的数据
                    models.Comment.objects.create(user=request.user,article_id=article_id,content=content,parent_id=parent_id)
                back_dic['msg'] = '评论成功'
            else:
                back_dic['code'] = 110
                back_dic['msg'] = '请先登录'
        return JsonResponse(back_dic)

转载于:https://www.cnblogs.com/king-home/p/11079307.html

你可能感兴趣的:(BBS-评论功能)