laravel model 模型处理 修改查询 或 修改 字段时的类型格式

先了解一下此图,有助于理解 

laravel model 模型处理 修改查询 或 修改 字段时的类型格式_第1张图片

laravel model 模型处理 修改查询 或 修改 字段时的类型格式_第2张图片

通过上图了解

这将在原有的列上添加一列is_admin,这需要通过属性访问时才会获得,如果我们希望在获得数据的时候被一起返回,则还需要append属性
class User extends Model{
    
    //设置方法名称
    protected $appends = ['is_admin','type'];
    
    //查询时 修改 字段格式或者值 【自动触发,无需调用】
    public function getIsAdminAttribute()
    {
        return $this->attributes['title'] = 'yes';
    }

    //修改时 更改储存格式或者值 【自动触发,无需调用】
    public function setIsAdminAttribute($value)
    {
        //$value 代表字段的值
        $this->attributes['title'] = empty($value) ? '0' : $value;
    }

     protected $type = [1=>'aaa',2=>'bbb'];

    public function getTypeAttribute()
    {
        return $this->type[$this->attributes['type']];
    }

}

 

你可能感兴趣的:(php,laravel)