作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要访问 eloquent 的 whereHasNot
方法(此处添加:
https://github.com/laravel/framework/commit/8f0cb08d8ebd157cbfe9fdebb54d2b71b0afaabd )
我通过 composer 安装了 laravel/framework (v5.1.20)。但是,该方法在我的 /Illuminate/Database/Eloquent/Builder.php
中不存在文件。
这是我在 composer.json 中的内容
"laravel/framework": "5.1.*",
最佳答案
它更名为 whereDoesntHave
2014 年 12 月 17 日。
/**
* Add a relationship count condition to the query with where clauses.
*
* @param string $relation
* @param \Closure|null $callback
* @return \Illuminate\Database\Eloquent\Builder|static
*/
public function whereDoesntHave($relation, Closure $callback = null)
{
return $this->doesntHave($relation, 'and', $callback);
}
关于laravel - Eloquent whereHasNot 缺失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33266838/
我需要访问 eloquent 的 whereHasNot方法(此处添加: https://github.com/laravel/framework/commit/8f0cb08d8ebd157cbfe
我是一名优秀的程序员,十分优秀!