av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁技術(shù)文章
文章詳情頁

Laravel Eloquent ORM高級部分解析

瀏覽:7日期:2022-06-06 08:43:09
目錄
  • 查詢作用域
    • 全局作用域
    • 本地作用域
  • 事件
    • 使用場景
  • 序列化
    • 轉(zhuǎn)換模型/集合為數(shù)組 - toArray()
    • 轉(zhuǎn)換模型為json - toJson()
    • 隱藏屬性
    • 為json追加值
  • Mutators
    • Accessors & Mutators
    • accessors
    • mutators
    • 屬性轉(zhuǎn)換

查詢作用域

全局作用域

全局作用域允許你對給定模型的所有查詢添加約束。使用全局作用域功能可以為模型的所有操作增加約束。

軟刪除功能實際上就是利用了全局作用域功能

實現(xiàn)一個全局作用域功能只需要定義一個實現(xiàn)Illuminate\Database\Eloquent\Scope接口的類,該接口只有一個方法apply,在該方法中增加查詢需要的約束

<?php
namespace App\Scopes;
use Illuminate\Database\Eloquent\Scope;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
class AgeScope implements Scope
{
    /**
     * Apply the scope to a given Eloquent query builder.
     *
     * @param  \Illuminate\Database\Eloquent\Builder  $builder
     * @param  \Illuminate\Database\Eloquent\Model  $model
     * @return void
     */
    public function apply(Builder $builder, Model $model)
    {
return $builder->where("age", ">", 200);
    }
}

在模型的中,需要覆蓋其boot方法,在該方法中增加addGlobalScope

<?php
namespace App;
use App\Scopes\AgeScope;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
    /**
     * The "booting" method of the model.
     *
     * @return void
     */
    protected static function boot()
    {
parent::boot();
static::addGlobalScope(new AgeScope);
    }
}

添加全局作用域之后,User::all()操作將會產(chǎn)生如下等價sql

select * from `users` where `age` > 200

也可以使用匿名函數(shù)添加全局約束

    static::addGlobalScope("age", function(Builder $builder) {
      $builder->where("age", ">", 200);
    });

查詢中要移除全局約束的限制,使用withoutGlobalScope方法

    // 只移除age約束
    User::withoutGlobalScope("age")->get();
    User::withoutGlobalScope(AgeScope::class)->get();
    // 移除所有約束
    User::withoutGlobalScopes()->get();
    // 移除多個約束
    User::withoutGlobalScopes([FirstScope::class, SecondScope::class])->get();

本地作用域

本地作用域只對部分查詢添加約束,需要手動指定是否添加約束,在模型中添加約束方法,使用前綴scope

    <?php
    namespace App;
    use Illuminate\Database\Eloquent\Model;
    class User extends Model
    {
/**
 * Scope a query to only include popular users.
 *
 * @return \Illuminate\Database\Eloquent\Builder
 */
public function scopePopular($query)
{
    return $query->where("votes", ">", 100);
}
/**
 * Scope a query to only include active users.
 *
 * @return \Illuminate\Database\Eloquent\Builder
 */
public function scopeActive($query)
{
    return $query->where("active", 1);
}
    }

使用上述添加的本地約束查詢,只需要在查詢中使用scope前綴的方法,去掉scope前綴即可

$users = App\User::popular()->active()->orderBy("created_at")->get();
 // 本地作用域方法是可以接受參數(shù)的
public function scopeOfType($query, $type)
{
    return $query->where("type", $type);
}
// 調(diào)用的時候
$users = App\User::ofType("admin")->get();

事件

Eloquent模型會觸發(fā)下列事件

creating`, `created`, `updating`, `updated`, `saving`, `saved`,`deleting`, `deleted`, `restoring`, `restored

使用場景

假設(shè)我們希望保存用戶的時候?qū)τ脩暨M行校驗,校驗通過后才允許保存到數(shù)據(jù)庫,可以在服務(wù)提供者中為模型的事件綁定監(jiān)聽

<?php
namespace App\Providers;
use App\User;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
User::creating(function ($user) {
    if ( ! $user->isValid()) {
return false;
    }
});
    }
    /**
     * Register the service provider.
     *
     * @return void
     */
    public function register()
    {
//
    }
}

上述服務(wù)提供者對象中,在框架啟動時會監(jiān)聽模型的creating事件,當(dāng)保存用戶之間檢查用戶數(shù)據(jù)的合法性,如果不合法,返回false,模型數(shù)據(jù)不會被持久化到數(shù)據(jù)。

返回false會阻止模型的save / update操作

序列化

當(dāng)構(gòu)建JSON API的時候,經(jīng)常會需要轉(zhuǎn)換模型和關(guān)系為數(shù)組或者jsonEloquent提供了一些方法可以方便的來實現(xiàn)數(shù)據(jù)類型之間的轉(zhuǎn)換。

轉(zhuǎn)換模型/集合為數(shù)組 - toArray()

    $user = App\User::with("roles")->first();
    return $user->toArray();
    $users = App\User::all();
    return $users->toArray();

轉(zhuǎn)換模型為json - toJson()

    $user = App\User::find(1);
    return $user->toJson();
    $user = App\User::find(1);
    return (string) $user;

隱藏屬性

有時某些字段不應(yīng)該被序列化,比如用戶的密碼等,使用$hidden字段控制那些字段不應(yīng)該被序列化

    <?php
    namespace App;
    use Illuminate\Database\Eloquent\Model;
    class User extends Model
    {
/**
 * The attributes that should be hidden for arrays.
 *
 * @var array
 */
protected $hidden = ["password"];
    }

隱藏關(guān)聯(lián)關(guān)系的時候,使用的是它的方法名稱,不是動態(tài)的屬性名

也可以使用$visible指定會被序列化的白名單

    <?php
    namespace App;
    use Illuminate\Database\Eloquent\Model;
    class User extends Model
    {
/**
 * The attributes that should be visible in arrays.
 *
 * @var array
 */
protected $visible = ["first_name", "last_name"];
    }
// 有時可能需要某個隱藏字段被臨時序列化,使用`makeVisible`方法
return $user->makeVisible("attribute")->toArray();

為json追加值

有時需要在json中追加一些數(shù)據(jù)庫中不存在的字段,使用下列方法,現(xiàn)在模型中增加一個get方法

    <?php
    namespace App;
    use Illuminate\Database\Eloquent\Model;
    class User extends Model
    {
/**
 * The accessors to append to the model"s array form.
 *
 * @var array
 */
protected $appends = ["is_admin"];
/**
 * Get the administrator flag for the user.
 *
 * @return bool
 */
public function getIsAdminAttribute()
{
    return $this->attributes["admin"] == "yes";
}
    }

方法簽名為getXXXAttribute格式,然后為模型的$appends字段設(shè)置字段名。

Mutators

Eloquent模型中,AccessorMutator可以用來對模型的屬性進行處理,比如我們希望存儲到表中的密碼字段要經(jīng)過加密才行,我們可以使用Laravel的加密工具自動的對它進行加密。

Accessors & Mutators

accessors

要定義一個accessor,需要在模型中創(chuàng)建一個名稱為getXxxAttribute的方法,其中的Xxx是駝峰命名法的字段名。

假設(shè)我們有一個字段是first_name,當(dāng)我們嘗試去獲取first_name的值的時候,getFirstNameAttribute方法將會被自動的調(diào)用

    <?php
    namespace App;
    use Illuminate\Database\Eloquent\Model;
    class User extends Model
    {
/**
 * Get the user"s first name.
 *
 * @param  string  $value
 * @return string
 */
public function getFirstNameAttribute($value)
{
    return ucfirst($value);
}
    }
// 在訪問的時候,只需要正常的訪問屬性就可以
    $user = App\User::find(1);
    $firstName = $user->first_name;

mutators

創(chuàng)建mutatorsaccessorsl類似,創(chuàng)建名為setXxxAttribute的方法即可

    <?php
    namespace App;
    use Illuminate\Database\Eloquent\Model;
    class User extends Model
    {
/**
 * Set the user"s first name.
 *
 * @param  string  $value
 * @return string
 */
public function setFirstNameAttribute($value)
{
    $this->attributes["first_name"] = strtolower($value);
}
    }
 // 賦值方式
    $user = App\User::find(1);
    $user->first_name = "Sally";

屬性轉(zhuǎn)換

模型的$casts屬性提供了一種非常簡便的方式轉(zhuǎn)換屬性為常見的數(shù)據(jù)類型,在模型中,使用$casts屬性定義一個數(shù)組,該數(shù)組的key為要轉(zhuǎn)換的屬性名稱,value為轉(zhuǎn)換的數(shù)據(jù)類型,當(dāng)前支持integer, real, float, double, string, boolean, object, array,collection, date, datetime, 和 timestamp

    <?php
    namespace App;
    use Illuminate\Database\Eloquent\Model;
    class User extends Model
    {
/**
 * The attributes that should be casted to native types.
 *
 * @var array
 */
protected $casts = [
    "is_admin" => "boolean",
];
    }

數(shù)組類型的轉(zhuǎn)換時非常有用的,我們在數(shù)據(jù)庫中存儲json數(shù)據(jù)的時候,可以將其轉(zhuǎn)換為數(shù)組形式。

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
    /**
     * The attributes that should be casted to native types.
     *
     * @var array
     */
    protected $casts = [
"options" => "array",
    ];
}
// 從配置數(shù)組轉(zhuǎn)換的屬性取值或者賦值的時候都會自動的完成json和array的轉(zhuǎn)換
$user = App\User::find(1);  
$options = $user->options;
$options["key"] = "value";
$user->options = $options;
$user->save();

以上就是Laravel Eloquent ORM高級部分解析的詳細(xì)內(nèi)容,更多關(guān)于Laravel Eloquent ORM解析的資料請關(guān)注其它相關(guān)文章!

標(biāo)簽: PHP
主站蜘蛛池模板: 日韩一区二区在线观看 | 一区二区三区免费观看 | 天天看夜夜 | 一区二区三区日韩 | 无吗视频 | 国产成人av在线播放 | 欧美不卡视频 | 麻豆精品久久 | 在线播放国产一区二区三区 | 久久999 | 亚洲精品久久久久久久久久吃药 | 中文字幕在线观看成人 | 亚洲码欧美码一区二区三区 | 欧美在线一区视频 | 国产成人精品一区二区 | 亚洲久久久 | 亚洲欧洲成人av每日更新 | 成人在线免费观看视频 | 亚洲福利一区二区 | 婷婷中文在线 | 中文字幕免费视频 | 亚洲欧美国产毛片在线 | 黄a免费网络 | 国产乱码久久久 | 免费人成激情视频在线观看冫 | 欧美色综合一区二区三区 | 国产成人艳妇aa视频在线 | 99re在线| 中文字幕第一页在线 | 91免费观看 | 免费av直接看 | 欧亚av在线| 国产精品日韩欧美一区二区三区 | 九九综合 | 欧美一区二区三区大片 | 精品永久 | 嫩呦国产一区二区三区av | 久久久91精品国产一区二区三区 | 偷拍亚洲色图 | 亚洲精品粉嫩美女一区 | 国产情品 |