摘要:開發(fā)過程中經(jīng)常會需要進行參數(shù)驗證,中我們常用或者這兩種方法來進行驗證,但是這兩種驗證都不是很方便進行自定義提示信息,自定義驗證規(guī)則,所以下面來介紹一種很方便的用法新建抽象類新建
web 開發(fā)過程中經(jīng)常會需要進行參數(shù)驗證,laravel 中我們常用 validator 或者 request 這兩種方法來進行驗證,但是這兩種驗證都不是很方便進行自定義提示信息,自定義驗證規(guī)則,所以下面來介紹一種很方便的用法:
新建抽象類value array * * @var array */ protected $data = array(); /** * Validation errors * * @var array */ protected $errors = array(); /** * Validation rules * * @var array */ protected $rules = array(); /** * Validation messages * * @var array */ protected $messages = array(); /** * Validation codes * * @var array */ protected $codes = array(); public function __construct(array $data) { $this->data = $data; $this->before(); $this->validator = Validator::make($this->data, $this->rules, $this->messages); $this->after(); } /** * Set data to validate * * @return validator */ public function getValidator() { return $this->validator; } /** * Set data to validate * * @return $this */ public function with(array $data) { $this->data = $data; $this->before(); $this->validator = $this->validator->make($this->data, $this->rules, $this->messages); $this->after(); return $this; } /** * Validation passes or fails * * @return boolean */ public function passes() { if ($this->validator->fails()) { $this->errors = $this->validator->messages(); return false; } return true; } /** * Return errors, if any * * @return array */ public function errors() { return $this->errors; } /** * Return errors codes, if any * * @return array */ public function getCodes() { return $this->codes; } /** * getRules * * @return array */ public function getRules() { return $this->rules; } /** * getData * * @return array */ public function getData() { return $this->data; } /** * getErrors * * @return array */ public function getErrors() { return $this->errors; } /** * getMessages * * @return array */ public function getMessages() { return $this->messages; } /** * setRule * * @param string $key * @param string $value * * @return $this */ public function setRule($key, $value) { $this->rules[$key] = $value; return $this; } /** * emptyRules * * @return $this */ public function emptyRules() { $this->rules = array(); return $this; } /** * sometimes * * @param string $attribute * @param string|array $rules * @param callable $callback * * @return $this */ public function sometimes($attribute, $rules, callable $callback) { $this->validator->sometimes($attribute, $rules, $callback); return $this; } /** * resolver * * @param Closure $resolver * * @return $this */ public function resolver(Closure $resolver) { Validator::resolver($resolver); return $this; } /** * replacer * * @param Closure $resolver * * @return $this */ public function replacer($replace, Closure $resolver) { Validator::replacer($replace, $resolver); return $this; } /** * extendImplicit * * @param Closure $resolver * * @return $this */ public function extendImplicit($extendImplicit, Closure $resolver) { Validator::extendImplicit($extendImplicit, $resolver); return $this; } /** * extend * * @param string $rule * @param Closure|string $extension * @param string $message * * @return $this */ public function extend($rule, $extension, $message = null) { Validator::extend($rule, $extension, $message); return $this; } /** * before (extend(),resolver()) * * @return $this */ public function before() { } /** * after(sometimes()) * * @return $this */ public function after() { } }新建中間件
isMethod("POST")) { $type = $request->segment(1); if ($validator) { $validator = $this->namespace . "" . studly_case($type) . "" . studly_case($validator) . "Validator"; $validator = new $validator($request->all()); if (!$validator->passes()) { if ($request->isAjax()) { return $validator->errors()->first(); } else { return redirect()->back() ->withErrors($validator->getValidator()) ->withInput(); } } } } return $next($request); } }新建 TestTestValidator
["required", "test", "min:1"], ); /** * Validation messages * * @var Array */ protected $messages = array( "name.required" => "必填", "name.min" => "最少1個字符", "name.test" => "測試", ); /** * 自定義驗證規(guī)則或者擴展Validator類 */ public function before() { $this->extend("test", function ($attribute, $value, $parameters) { return bool; }); } }路由中如何使用
Route::post("/", ["middleware" => ["valiAdmin:Test"], "uses" => "IndexController@test"]);
實現(xiàn)了驗證和控制器的分離,驗證更加方便、快捷
具體使用可以自行配置優(yōu)化~
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/29621.html
摘要:對于這樣嵌套的,使用來校驗對象間關(guān)系很重要,可以看做是進入核心業(yè)務(wù)邏輯前的初步校驗。。當然最后寫表時還有,避免壞數(shù)據(jù)進入。,總之,在寫程序時,很重要,需要去寫,包括和。。。 在用laravel寫api時,當前端傳進來的request是POST/PUT/PATH等method時,那需要做request validation,盡管對于前后端分離程序,前端程序Angular/Vue已經(jīng)做了v...
摘要:我們有時會碰到一個場景,比如買車票,需要進行查詢車票剩余,這時候需要一個日期范圍,開始日期必須大于等于今天,結(jié)束日期必須大于等于開始日期。通過增加一個額外的字段,然后通過這個字段限制范圍。測試發(fā)現(xiàn)實際并不生效。 我們有時會碰到一個場景,比如買車票,需要進行查詢車票剩余,這時候需要一個日期范圍,開始日期必須大于等于今天,結(jié)束日期必須大于等于開始日期。 Version Laravel 5...
摘要:弊端顯而易見,如果另一個不是就抓瞎了,下面是另一種通用的解決方案在中重寫方法假設(shè)字段是假設(shè)字段是假設(shè)字段是可以看到雖然能解決問題,但是顯然有悖于的優(yōu)雅風格,賣了這么多關(guān)子,下面跟大家分享一下我的解決方案。 解決方案: 登錄字段不超過兩個的(簡單的解決方案) 登錄字段大于或等于三個的(相對復(fù)雜一些) 登錄字段不超過兩個的 我在網(wǎng)上看到一種相對簡單解決方案,但是不能解決所有兩個字段的驗...
摘要:就目前我的面試經(jīng)驗而言,絕大部分項目都沒有引入自動化測試,測試基本都是依靠開發(fā)人員的自測以及測試人員黑盒測試。本文不探討黑盒測試,僅僅發(fā)表一點我對自動化測試的想法。緣起早在兩年多以前,就在思考如何做的測試,保證返回的結(jié)果與預(yù)期的一致。 目前,前后端分離的開發(fā)模式越來越受到大家的青睞,前端與后端的職責也更加清晰,后端通過 API 提供數(shù)據(jù),前端通過 API 獲取數(shù)據(jù),展示頁面,前端有更大...
摘要:小紅要以最低成本最快速度推出版本,投放市場,收集反饋,持續(xù)迭代??偨Y(jié)在技能掌握充足的情況下,個人感覺開發(fā)效率要略高于。 我個人是比較不喜歡去正兒八經(jīng)的比較兩個框架的,這樣沒有意義,不過欲善其事先利其器! 技術(shù)是相通的,但是在某個特定的領(lǐng)域的某個階段肯定有相對最適合的一個工具! 這里比較不是從技術(shù)角度比較,而是從公司技術(shù)選型考慮的,特別是初創(chuàng)的互聯(lián)網(wǎng)創(chuàng)業(yè)公司。沒辦法,誰讓互聯(lián)網(wǎng)公司離不開...
閱讀 2594·2023-04-26 03:00
閱讀 1408·2021-10-12 10:12
閱讀 4203·2021-09-22 15:33
閱讀 2931·2021-09-22 15:06
閱讀 1544·2019-08-30 15:44
閱讀 2155·2019-08-30 13:59
閱讀 543·2019-08-30 11:24
閱讀 2429·2019-08-29 17:07