美文网首页
TP5 scope 范围查询 以及 useGlobalScop

TP5 scope 范围查询 以及 useGlobalScop

作者: 卡地亚克思 | 来源:发表于2018-12-31 19:11 被阅读0次

设置查询范围

//在模型中设置查询范围
namespace app\index\model;

use think\Model;

class User extends Model
{

    protected function scopeThinkphp($query)
    {
        $query->where('name','thinkphp')->field('id,name');
    }
    
    protected function scopeAge($query)
    {
        $query->where('age','>',20)->limit(10);
    }    
    
}

使用查询范围

// 查找name为thinkphp的用户
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();

全局查询范围的定义

如果你的所有查询都需要一个基础的查询范围,那么可以在模型类里面定义一个静态的base方法,例如:

namespace app\index\model;

use think\Model;

class User extends Model
{
    // 定义全局的查询范围
    protected function base($query)
    {
        $query->where('status',1);
    }
}

全局查询范围开关

// 关闭全局查询范围
User::useGlobalScope(false)->get(1);
// 开启全局查询范围
User::useGlobalScope(true)->get(2);

相关文章

网友评论

      本文标题:TP5 scope 范围查询 以及 useGlobalScop

      本文链接:https://www.haomeiwen.com/subject/dvhahqtx.html