這篇文章主要給大家介紹了關於Laravel中unique和exists驗證規則的優化的相關資料,文中透過範例程式碼介紹的非常詳細,對大家的學習或工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧。
前言
Laravel提供了多種方法來驗證應用輸入資料。預設情況下,Laravel的控制器基底類別使用ValidatesRequests trait,該trait提供了便利的方法透過各種強大的驗證規則來驗證輸入的HTTP請求。
Laravel中透過ValidatesRequests這個trait來驗證requests非常的方便,並且在BaseController類別中它被自動的引入了。 exitsts()和unique()這兩個規則非常的強大和便利。
它們在使用的過程中需要對資料庫中已有的資料進行驗證,通常它們會像下面這樣來寫:
##
// exists example 'email' => 'exists:staff,account_id,1' // unique example 'email' => 'unique:users,email_address,$user->id,id,account_id,1'
#
'email' => [ 'required', Rule::exists('staff')->where(function ($query) { $query->where('account_id', 1); }), ],
'email' => [ 'required', Rule::unique('users')->ignore($user->id)->where(function ($query) { $query->where('account_id', 1); }) ],
protected function formatWheres() { return collect($this->wheres)->map(function ($where) { return $where['column'].','.$where['value']; })->implode(','); }
相關推薦:
以上是Laravel中unique與exists驗證規則的最佳化詳解php實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!