laravel关联查询,同时返回关联表和被关联表的信息,怎么做
展开全部
假设现在两个 Model
Post 文章
class Post extends Model {
// 省略
public function comments() {
return $this->hasMany(Comment::class);
}
}
Comment 评论
class Comment extends Model {
// 省略
public function post() {
return $this->belongsTo(Post::class);
}
}
// 预加载,可以在取得文章同时把关联的Comment一同取出
Post::with('comments')->find(1)->get();
Post 文章
class Post extends Model {
// 省略
public function comments() {
return $this->hasMany(Comment::class);
}
}
Comment 评论
class Comment extends Model {
// 省略
public function post() {
return $this->belongsTo(Post::class);
}
}
// 预加载,可以在取得文章同时把关联的Comment一同取出
Post::with('comments')->find(1)->get();
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询