0

我目前有三个这样的表:

ci_posts: id、title、slug、内容。

ci_terms: term_id、title、slug。

ci_relationship: id、post_id、term_id

我正在尝试根据特定的点击类别检索所有帖子。

这是我在我的模型中使用的方法,但我无法让它按我的意愿工作:

public function get_posts_category($id){

    $this->db->select('*');
    $this->db->from($this->table);
    $this->db->join('ci_relationship', 'ci_relationship.post_id = ci_posts.id', 'INNER');
    //$this->db->join('ci_users', 'ci_users.id = ci_relationship.id', 'INNER');
    //$this->db->join('ci_terms', 'ci_relationship.term_id = ci_terms.term_id', 'INNER');
    $this->db->order_by('post_id', 'DESC');
    $this->db->group_by('post_id');
    //$this->db->where('type', 'category');
    $this->db->where('term_id', $id);

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

    if($query->num_rows() >= 1){
        return $query->result();
    } else {
        return false;
    }

}

正如上面的代码片段中的 $this->db->where('term_id', $id) 应该可以显示与单击的类别匹配的所有帖子,该类别存储在 ci_relationship 表中并在 ci_terms 表中创建,但是即使 ci_relationship 表中有多个相互关联的 ci_posts 和 ci_terms,当前输出也不会显示任何内容。

有人可以解释我的错误在哪里吗?

更新这是我访问它们的方式:

<?php if($categories) : ?>
  <div class="panel panel-default">
    <div class="panel-heading">
      <h1 class="panel-title">Categories</h1>
    </div>
    <div class="panel-body">
      <?php foreach($categories as $cats) : ?>
        <a href="<?= base_url('posts/category/'.get_category_slug($cats->term_id)) ?>"><span class="label label-orange"><?= get_category($cats->term_id); ?></span></a>
      <?php endforeach; ?>
    </div>
  </div>
<?php endif; ?>

这是我的 Post 控制器中的类别方法:

    public function category($id){

        $data['posts'] = $this->Post_model->get_posts_category($id);
        $category = $this->Terms_model->get($id);

        // Get Categories
        $data['categories'] = $this->Post_model->get_categories();

        // Meta
//      $data['title']  = $this->settings->title.' | '. ucfirst($category->title);

        // Load template
        $this->template->load('public', 'default', 'posts/category', $data);
    }

当标签存在于下面的 ci_relationship 表中时,这是控制器中获取标签的方法:

// Get categories
public function get_categories(){

    $this->db->select('*');
    $this->db->from('ci_relationship');
    $this->db->group_by('term_id');
    $this->db->where('type', 'category');

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

    if($query->num_rows() >= 1){
        return $query->result();
    } else {
        return false;
    }

}

但是上面的代码只是为了显示,根据点击的类别显示帖子的实际功能仍然是get_posts_category方法。

提前致谢

4

1 回答 1

1

希望对你有帮助 :

get_posts_category应该是这样的:

public function get_posts_category($id)
{

    $this->db->select('*, count(ci_posts.id)');
    $this->db->from('ci_posts');
    $this->db->join('ci_relationship', 'ci_relationship.post_id = ci_posts.id');
    //$this->db->join('ci_users', 'ci_users.id = ci_relationship.id', 'INNER');
    //$this->db->join('ci_terms', 'ci_relationship.term_id = ci_terms.term_id', 'INNER');
    $this->db->order_by('ci_posts.id', 'DESC');
    $this->db->group_by('ci_posts.id');
    //$this->db->where('type', 'category');
    $this->db->where('ci_relationship.term_id', $id);

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

    if($query->num_rows() > 0)
    {
        return $query->result();
    } 
    else 
    {
        return false;
    }
}
于 2018-07-18T07:41:33.657 回答