在 Laravel 4 中,我有以下表格
- items table
--- id
--- name
- tags table
--- id
--- name
- item_tag
--- id
--- tag_id
--- item_id
--- created_at
--- updated_at
class Item extends Eloquent {
public function tags()
{
return $this->belongsToMany('Tag');
}
}
class Tag extends Eloquent {
public function items()
{
return $this->hasMany('Item');
}
}
我的问题:
我想获取所有具有以下两个标签“foo”和“bar”的项目?只有带有两个标签的物品才应该被退回!?
更新
我已经尝试了以下方法,但它对我不起作用,我感觉问题出在“->have”子句上,但我做错了,
假设标签“foo”的 id 为 1,“bar”的 id 为 2
class Item extends Eloquent {
protected $table = 'items';
public function tags()
{
return $this->belongsToMany('Tag');
}
public static function withTags()
{
return static::leftJoin(
'item_tag',
'items.id', '=', 'item_tag.item_id'
)
->whereIn('item_tag.tag_id', array(1, 2))
->groupBy('items.id')
->having('count(*)', '=',2)
;
}
}
并运行它
#routes.php
Route::get('/', function()
{
return Item::withTags()->get();
});
它应该返回带有标签 1 和 2 的所有项目,但它没有返回任何东西!
有什么帮助吗?