Query relationship Eloquent(查询关系 Eloquent)
问题描述
我有 News
模型,而且 News
有很多评论,所以我在 News
模型中做了这个:
I have News
model, and News
has many comments, so I did this in News
model:
public function comments(){
$this->hasMany('Comment', 'news_id');
}
但是我在 comments
表中也有字段 trashed
,我只想选择没有被删除的评论.所以 废弃了 <>1
.所以我想知道有没有办法做这样的事情:
But I also have field trashed
in comments
table, and I only want to select comments that are not trashed. So trashed <> 1
. So I wonder is there a way to do something like this:
$news = News::find(123);
$news->comments->where('trashed', '<>', 1); //some sort of pseudo-code
有没有办法使用上述方法,或者我应该写这样的东西:
Is there a way to use above method or should I just write something like this:
$comments = Comment::where('trashed', '<>', 1)
->where('news_id', '=', $news->id)
->get();
推荐答案
这些都适合你,选择你最喜欢的:
Any of these should work for you, pick the one you like the most:
急切加载.
Eager-loading.
$comments = News::find(123)->with(['comments' => function ($query) {
$query->where('trashed', '<>', 1);
}])->get();
您可以通过 use($param)
方法将参数注入查询函数,这允许您在运行时使用动态查询值.
You can inject the parameter to query function by use($param)
method, that allows you to use dynemic query value at runtime.
延迟加载
$news = News::find(123);
$comments = $news->comments()->where('trashed', '<>', 1)->get();
<小时>
不过,我忍不住注意到,您可能想做的是处理软删除,而 Laravel 有内置功能可以帮助您:http://laravel.com/docs/eloquent#soft-deleting
这篇关于查询关系 Eloquent的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:查询关系 Eloquent
基础教程推荐
- HTTP 与 FTP 上传 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01