gpt4 book ai didi

php - 具有多个类别的 codeigniter 重复条目

转载 作者:行者123 更新时间:2023-11-28 23:42:10 25 4
gpt4 key购买 nike

我是 codeigniter 和 PHP 的新手。需要一些帮助。
我在尝试将我的博文显示到博客 View 时遇到了麻烦。
表格:

   blog        category      blog_category| ------- |  | -------- |  | ------------- || blog_id |  |  cat_id  |  |     cat_id    || title   |  | cat_name |  |    blog_id    || content |  | cat_slug |

in my blog controllers :

defined('BASEPATH') OR exit('No direct script access allowed');class Blog extends CI_Controller {    /*     * Blog Controller     */    public function __construct()    {        parent::__construct();        $this->load->model('blog_model');    }    public function index()    {        $this->data = array(            'title' => 'Blog',            'blog' => $this->blog_model->get_all_post(),        );        $this->load->view('main/blog', $this->data);    }}

and in my blog model :

function get_all_post() {
$this->db->select('*');
$this->db->from('blog');
$this->db->join('blog_category', 'blog_category.blog_id=blog.blog_id', 'left');
$this->db->join('category', 'blog_category.cat_id=category.cat_id');
$query = $this->db->get();
$select = array();
foreach($query->result() as $row) {
$select[] = $row;
}
if (count($select) > 0)
return $select;
return NULL;
}

在我的博客 View 中:

<?php foreach ($blog as $item): ?>
<h3 class="post-title"><a href="#"><?php echo $item->title;?></a></h3>
<p class="category"><?php echo $item->categories;?></p>
<?php endforeach;?>

当我尝试访问该 View 时,它显示了 2 个具有相同记录但具有不同类别的帖子。在我的博文中有 2 个类别并一一显示,如果在我的帖子中有 3 个类别然后结果显示 3 个帖子有 3 个类别一一显示。抱歉我的英语不好。

最佳答案

加入是错误的,

$this->db->join('blog_category', 'blog_category.blog_id=blog.blog_id', 'left');
^// its blog_category
$this->db->join('blog_category', 'blog_category.cat_id=category.cat_id');

然后使用,

$this->db->group_by("blog.blog_id");// removes duplicates.

关于php - 具有多个类别的 codeigniter 重复条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34198078/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com