我有2对多关系表;帖子和类别。一个帖子可以有很多类别。我的问题是如何显示其类别的帖子列表?
就像那样:
我的帖子1(cat1,cat2,cat3)
我的帖子2(cat2,cat3)
我的帖子3(cat1)
我尝试过这些方法;
// Create post object
$p = new Post();
// Get 30 posts
$p->get(30);
// Loop through all posts
foreach ($p as $post)
{
// Get the current user's group
$post->category->get();
foreach($post->category as $category) {
// ...
}
}
不喜欢这样,因为如果我收到30个帖子,那么在每个帖子循环中再次进行查询并一次又一次地查找类别。
并尝试了这个:
$p = new Post();
$p->include_related('category', array('id', 'name'), TRUE, TRUE)->get(30);
foreach($p as $post) {
// ...
foreach($post->category as $category) {
// ...
}
}
这是更接近的,但这一个问题是我设置了限制get(30)
,所以如果我的每个帖子有2个类别而不是显示15个帖子+15个类别。
许多上市的真正方法是什么?
答案 0 :(得分:0)
在这种情况下,我会选择在php关联数组中缓存两个表,然后只循环数组。