zoukankan      html  css  js  c++  java
  • 评论列表优化联表问题

    public function read1()
    {
        $newsId = $this->request->param('news_id', 0, 'intval');
        $param = $this->request->param();
        $where['news_id'] = ['=', $newsId];
        $where['status'] = ['=', 1];
        $count = model('Comment')->getNormalCommentsCount($where);
        $this->getPageAndSize($param);
        $comments = model('Comment')->getNormalComments($where, $this->from, $this->size);
        if( !$comments->isEmpty() ) {
            $userId = [];
            foreach ($comments as $comment) {
                $userId[] = $comment['user_id'];
                if( !empty($comment['to_user_id']) ) {
                    $userId[] = $comment['to_user_id'];
                }
            }
            $ids = array_unique($userId);
            $condition['id'] = ['in', $ids];
            $users = model('User')->getUserInId($condition);
            if( empty($users) ) {
                $userData = [];
            } else {
                foreach ($users as $user) {
                    $userData[$user['id']] = $user;
                }
            }
            $returnData = [];
            foreach ($comments as $comment) {
                $returnData[] = [
                    'id' => $comment['id'],
                    'content' => $comment['content'],
                    'user_id' => $comment['user_id'],
                    'news_id' => $comment['news_id'],
                    'parent_id' => $comment['parent_id'],
                    'create_time' => $comment['create_time'],
                    'username' => empty($userData[$comment['user_id']]) ? "" : $userData[$comment['user_id']]['username'],
                    'toUsername' => empty($userData[$comment['to_user_id']]) ? "" : $userData[$comment['to_user_id']]['username'],
                    'userImage' => empty($userData[$comment['user_id']]) ? "" : $userData[$comment['user_id']]['image'],
                ];
            }
            $total_page = ceil($count / $this->size);
            $result = [
                'total_page' => $total_page,
                'page' => $this->page,
                'list' => $returnData,
            ];
        } else {
            $result = [];
        }
        return Show::success($result);
    }
  • 相关阅读:
    Java实现 LeetCode 657 机器人能否返回原点(暴力大法)
    PHP imagearc
    PHP imageantialias
    PHP imagealphablending
    PHP imageaffinematrixget
    PHP imageaffinematrixconcat
    空单元 | empty-cells (Miscellaneous Level 2)
    矩阵 | matrix() (Transforms)
    相邻兄弟选择器 | Adjacent sibling selectors (Selectors)
    相抵路径 | offset-path (Motion Path)
  • 原文地址:https://www.cnblogs.com/aln0825/p/13488353.html
Copyright © 2011-2022 走看看