就可以进行下面的条件查询:
User::scope('thinkphp')->find();
// 查找年龄大于20的10个用户
User::scope('age')->select();
// 查找name为thinkphp的用户并且年龄大于20的10个用户
User::scope('thinkphp,age')->select();
可以直接使用闭包函数进行查询,例如:
User::scope(function($query){
$query->where('age','>',20)->limit(10);
})->select();
支持动态调用的方式,例如:
$user = new User;
// 查找年龄大于20的10个用户
$user->age()->all();
// 查找name为thinkphp的用户并且年龄大于20的10个用户
$user->thinkphp()->age()->all();
如果你的所有查询都需要一个基础的查询范围,那么可以在模型类里面定义一个静态的base
方法,例如:
namespace app\index\model;
use think\Model;
class User extends Model
// 定义全局的查询范围
protected function base($query)
{
$query->where('status',1);
}
}
最终的查询条件会是
status = 1 AND id = 1
如果需要动态关闭/开启全局查询访问,可以使用:
// 关闭全局查询范围
User::useGlobalScope(false)->get(1);