我有以下3个表格:
职位
评论
标签
职位:
class Post extends Eloquent
{
public function comments()
{
return $this->hasMany(Comment::class,'post_id','id');
}
}
** Post data **
{
'id' : 1,
'title' : 'bla bla',
'created_at: 'some date'
}
评论:
class Comment extends Eloquent
{
public function comments()
{
return $this->belongsTo(Post::class,'id');
}
public function tags()
{
return $this->hasMany(Tag::class,'id','tags_ids');
}
}
** Comments data **
{
'id' : 322,
'active' : true
'post_id' : 1,
'created_at: 'some date',
'tags_ids' : [1,2,3]
}
标签:
class Tag extends Eloquent
{
public function tags()
{
return $this->belongsTo(Comment::class,'tags_ids');
}
}
** Tags data **
{
{'id' : 1,
'description' : 'some description1'
},
{'id' : 2,
'description' : 'some description2'
},
{'id' : 3,
'description' : 'some description3'
}
}
帖子表有许多注释,注释表有许多与之关联的标记。
如何使用预先加载将所有这些表组合在一起?
像这样:
$post = Post::where('id',1)->with(['comments' => function($q) {
$q->with('tags');
}])->first();
但此查询始终在标记关系中返回空响应。
我做错了什么?
所需的结果如下所示:
{
'id' : 1,
'title' : 'bla bla',
'created_at: 'some date',
'comments':[{
'id' : 322,
'active' : true
'post_id' : 1,
'created_at: 'some date',
'tags_ids' : [1,2,3],
'tags' : [
{'id' : 1,'description' : 'some description1'},
{'id' : 2, 'description' : 'some description2'},
{'id' : 3,'description' : 'some description3'}
],
}
]
}
您可以看到帖子其中包含评论,评论内部也包含标签关系。
附言:我在我的项目中使用'jenssegers/laravel-mongodb'包,我试图在没有任何原始表达的情况下做到这一点。
谢谢。
狐的传说
蛊毒传说
长风秋雁