0

我正在尝试在我的网站上实现一个只有两个级别的评论系统,例如您将拥有主要评论并回复该评论,但它不会进一步:

main comment 1
  (sub_comment1)
  (sub_comment2)

main comment 2
  (sub_comment1)
  (sub_comment2)
  (sub_comment2)

ETC...

说得通?

我在 codeigniter 中创建网站,但我认为一个基本的 php 解决方案就可以了。

我的数据库表中的每一行都有一个 id 和一个 parent_id,如果父 id 为 0,则它是主评论,如果它是子评论,它将在 parent_id 中具有其父评论的 id。

如何以正确的顺序提供带有父注释和子注释的二维数组。

我当前的代码是这样的:控制器:

 function status_comments($id){

    $this->load->model('status_model');//load the status model
    $this->load->model('comment_model');//load the comment model

    $status = $this->status_model->get_entry_and_category($id); 
    $comments = $this->comment_model->get_comments($id);   

    if($status !== false) {

        if($comments !== false) {

            foreach($comments as $comment){

                  if($comment->reply_id == 0){

                    $comment =   

                  }
            }


            $content_data['comments'] = $comments; 

        }        

        $content_data['status'] = $status; 
        $data['content'] = $this->load->view('status_view', $content_data, TRUE);
        $data['title'] = $status->title.' - High Value Status'; 
        $data['page_title'] = $status->title;//The page H1 tag
        $this->load->view('home', $data);   

    }
    else 
    { 
        $this->session->set_flashdata('invalid', '<p class="rejectionalert"><span>The status you tried to view does not exist.</span></p>');
        redirect('home'); 
    }

}

模型功能:

//Gets comments associated with an individual status   
function get_comments($status_id, $offset=null, $limit=null)
{
    $this->db->select('id, comment, nickname, created, reply_id');
    $this->db->from('comments');
    $this->db->where('active', 1);
    $this->db->where('status_id', $status_id);

    $query = $this->db->get(); 

    if ($query->num_rows() > 0) {

        return $query->result();      
    }

    return false;   
}
4

1 回答 1

0

这可行,但它使用多个查询,模型:

 function get_comments($status_id, $limit=NULL, $offset=NULL)
 {
    $this->db->where(array('status_id' => $status_id, 'reply_id' => 0));
    $query = $this->db->get('comments', $limit, $offset);

    $parents = $query->result_array();
    $comments = array(); 

    foreach($parents as $key => $comment)
    {
        array_push($comments, $comment);

        $this->db->order_by('created', 'ASC');
        $this->db->where(array('status_id' => $status_id, 'reply_id' => $comment['id']));

        $comments = array_merge($comments, $this->db->get('comments')->result_array());
    }

    return $comments;   

}

我认为对所有评论进行一次查询,通过它们的 id 将它们索引到一个数组中,然后再次遍历它们以找到它们的孩子会更有效。我仍然不知道如何实现?

于 2013-02-05T00:22:54.557 回答