看到一篇博客,里面有这么一个语句:
public function index()
{
$post = Post::active()->orderBy('updated_at', 'desc')->first();
//...
}
问题:
active()表示什么意思?查了一下文档和api,都没有看到。
看到一篇博客,里面有这么一个语句:
public function index()
{
$post = Post::active()->orderBy('updated_at', 'desc')->first();
//...
}
问题:
active()表示什么意思?查了一下文档和api,都没有看到。
这不是 laravel
自带的方法。
比如 Post
文章有个属性 是否可用的
, 接下来在 post Model
中定义了个 active
方法。
//post.php
class Post extends Model
{
public function active()
{
return $this->where('active', 1);
}
}
所以这句 Post::active()->orderBy('updated_at', 'desc')->first()
相当于查询所有可用文章中,按更新时间倒序的第一个。
说多了都是文档不熟悉啊,好好看过文档就就好啦。
在 model 的函数
class Post extends Model{
public static function active(){
// xxxxx
return $this;
}
}
// 控制器
public function index()
{
$post = Post::active()->orderBy('updated_at', 'desc')->first();
//...
}
active() 这个方法对应的是 scopeActive()
你看下scopeActive() , 里面应该是对$query加条件, 类似这样: $query->where('active', 1)