当前位置:首页 > CMS教程 > 其它CMS > 列表

为你的 Laravel 验证器加上多验证场景的实现

发布:smiling 来源: PHP粉丝网  添加日期:2022-02-26 08:40:12 浏览: 评论:0 

这篇文章主要介绍了为你的 Laravel 验证器加上多验证场景的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。

前言

在我们使用 laravel 框架的验证器,有的时候需要对表单等进行数据验证,当然 laravel 也为我们提供了。

Illuminate\Http\Request 对象提供的 validate 方法 以及 FormRequest 和 Validator。

FormRequest 通过新建文件将我们的验证部分单独分开,来避免控制器臃肿,如果验证失败,就会生成一个让用户返回到先前的位置的重定向响应,这些错误也会被闪存到 Session 中,以便这些错误都可以在页面中显示出来,如果传入的请求是 AJAX,会向用户返回具有 422 状态代码和验证错误信息的 JSON 数据的 HTTP 响应,如果是接口请求或 ajax, 那么我们可能还需要将返回的 json 数据修改成我们想要的格式。

当我们实际开发中,可能一个模块需要有多个验证场景,如果为每一个验证场景都新建一个 FormRequest 不就太过繁琐了。

那么给 laravel 加上一个验证场景通过一个验证类一个模块或多个模块来适应不同的场景不就方便很多了。

开始

首先 我们封装了一个基类 BaseValidate.php 并将其放在 app\Validate 下,当然你也可以放在其他地方,只要修改好命名空间就好。

  1. <?php 
  2. namespace App\Validate; 
  3.  
  4. use Illuminate\Support\Facades\Validator; 
  5. /** 
  6.  * 扩展验证器 
  7.  */ 
  8. class BaseValidate { 
  9.  
  10.   /** 
  11.    * 当前验证规则 
  12.    * @var array 
  13.    */ 
  14.   protected $rule = []; 
  15.  
  16.   /** 
  17.    * 验证提示信息 
  18.    * @var array 
  19.    */ 
  20.   protected $message = []; 
  21.  
  22.   /** 
  23.    * 验证场景定义 
  24.    * @var array 
  25.    */ 
  26.   protected $scene = []; 
  27.  
  28.   /** 
  29.    * 设置当前验证场景 
  30.    * @var array 
  31.    */ 
  32.   protected $currentScene = null; 
  33.  
  34.   /** 
  35.    * 验证失败错误信息 
  36.    * @var array 
  37.    */ 
  38.   protected $error = []; 
  39.  
  40.   /** 
  41.    * 场景需要验证的规则 
  42.    * @var array 
  43.    */ 
  44.   protected $only = []; 
  45.  
  46.  
  47.   /** 
  48.    * 设置验证场景 
  49.    * @access public 
  50.    * @param string $name 场景名 
  51.    * @return $this 
  52.    */ 
  53.   public function scene($name
  54.   { 
  55.     // 设置当前场景 
  56.     $this->currentScene = $name
  57.  
  58.     return $this
  59.   } 
  60.  
  61.   /** 
  62.    * 数据验证 
  63.    * @access public 
  64.    * @param array   $data 数据 
  65.    * @param mixed   $rules 验证规则 
  66.    * @param array  $message 自定义验证信息 
  67.    * @param string  $scene 验证场景 
  68.    * @return bool 
  69.    */ 
  70.   public function check($data$rules = [], $message = [],$scene = ''
  71.   { 
  72.     $this->error =[]; 
  73.     if (emptyempty($rules)) { 
  74.       //读取验证规则 
  75.       $rules = $this->rule; 
  76.     } 
  77.     if (emptyempty($message)) { 
  78.       $message = $this->message; 
  79.     } 
  80.  
  81.     //读取场景 
  82.     if (!$this->getScene($scene)) { 
  83.       return false; 
  84.     } 
  85.  
  86.     //如果场景需要验证的规则不为空 
  87.     if (!emptyempty($this->only)) { 
  88.       $new_rules = []; 
  89.       foreach ($this->only as $key => $value) { 
  90.         if (array_key_exists($value,$rules)) { 
  91.           $new_rules[$value] = $rules[$value]; 
  92.         }   
  93.       } 
  94.       $rules = $new_rules
  95.     } 
  96.     // var_dump($rules);die; 
  97.     $validator = Validator::make($data,$rules,$message); 
  98.     //验证失败 
  99.     if ($validator->fails()) { 
  100.       $this->error = $validator->errors()->first(); 
  101.       return false; 
  102.     } 
  103.  
  104.     return !emptyempty($this->error) ? false : true; 
  105.   } 
  106.  
  107.   /** 
  108.    * 获取数据验证的场景 
  109.    * @access protected 
  110.    * @param string $scene 验证场景 
  111.    * @return void 
  112.    */ 
  113.   protected function getScene($scene = ''
  114.   { 
  115.     if (emptyempty($scene)) { 
  116.       // 读取指定场景 
  117.       $scene = $this->currentScene; 
  118.     } 
  119.     $this->only = []; 
  120.  
  121.     if (emptyempty($scene)) { 
  122.       return true; 
  123.     } 
  124.  
  125.     if (!isset($this->scene[$scene])) { 
  126.       //指定场景未找到写入error 
  127.       $this->error = "scene:".$scene.'is not found'
  128.       return false; 
  129.     } 
  130.     // 如果设置了验证适用场景 
  131.     $scene = $this->scene[$scene]; 
  132.     if (is_string($scene)) { 
  133.       $scene = explode(','$scene); 
  134.     } 
  135.     //将场景需要验证的字段填充入only 
  136.     $this->only = $scene
  137.     return true; 
  138.   } 
  139.  
  140.   // 获取错误信息 
  141.   public function getError() 
  142.   { 
  143.     return $this->error; 
  144.   }  

使用

接下来我们来验证一个文章的提交信息,首先我们新建一个文章验证类 ArticleValidate.php 并填充一些内容

  1. <?php 
  2. namespace App\Validate; 
  3.  
  4. use App\Validate\BaseValidate; 
  5. /** 
  6.  * 文章验证器 
  7.  */ 
  8. class ArticleValidate extends BaseValidate { 
  9.   //验证规则 
  10.   protected $rule =[ 
  11.     'id'=>'required'
  12.     'title' => 'required|max:255'
  13.     'content' => 'required'
  14.   ]; 
  15.   //自定义验证信息 
  16.   protected $message = [ 
  17.     'id.required'=>'缺少文章id'
  18.     'title.required'=>'请输入title'
  19.     'title.max'=>'title长度不能大于 255'
  20.     'content.required'=>'请输入内容'
  21.   ]; 
  22.  
  23.   //自定义场景 
  24.   protected $scene = [ 
  25.     'add'=>"title,content"
  26.     'edit'=> ['id','title','content'], 
  27.   ]; 

如上所示,在这个类中我们定义了验证规则 rule,自定义验证信息 message,以及验证场景 scene

非场景验证

我们只需要定义好规则

  1. public function update(){ 
  2.  
  3.     $ArticleValidate = new ArticleValidate; 
  4.  
  5.     $request_data = [ 
  6.       'id'=>'1'
  7.       'title'=>'我是文章的标题'
  8.       'content'=>'我是文章的内容'
  9.     ]; 
  10.  
  11.     if (!$ArticleValidate->check($request_data)) { 
  12.       var_dump($ArticleValidate->getError()); 
  13.     } 
  14.   } 

check 方法中总共有四个参数,第一个要验证的数据,第二个验证规则,第三个自定义错误信息,第四个验证场景,其中 2,3,4 非必传。

如果验证未通过我们调用 getError() 方法来输出错误信息,getError()暂不支持返回所有验证错误信息 。

场景验证

我们需要提前在验证类中定义好验证场景

如下,支持使用字符串或数组,使用字符串时,要验证的字段需用 , 隔开

  1. //自定义场景 
  2.   protected $scene = [ 
  3.     'add'=>"title,content"
  4.     'edit'=> ['id','title','content'], 
  5.   ]; 

然后在我们的控制器进行数据验证

  1. public function add(){ 
  2.  
  3.     $ArticleValidate = new ArticleValidate; 
  4.  
  5.     $request_data = [ 
  6.       'title'=>'我是文章的标题'
  7.       'content'=>'我是文章的内容'
  8.     ]; 
  9.  
  10.     if (!$ArticleValidate->scene('add')->check($request_data)) { 
  11.       var_dump($ArticleValidate->getError()); 
  12.     } 
  13.  
  14.   } 

控制器内验证

当然我们也允许你不创建验证类来验证数据,

  1. public function add(){ 
  2.  
  3.     $Validate = new BaseValidate; 
  4.  
  5.     $request_data = [ 
  6.       'title'=>'我是文章的标题'
  7.       'content'=>'我是文章的内容'
  8.     ]; 
  9.  
  10.     $rule =[ 
  11.       'id'=>'required'
  12.       'title' => 'required|max:255'
  13.       'content' => 'required'
  14.     ]; 
  15.     //自定义验证信息 
  16.     $message = [ 
  17.       'id.required'=>'缺少文章id'
  18.       'title.required'=>'请输入title'
  19.       'title.max'=>'title长度不能大于 255'
  20.       'content.required'=>'请输入内容'
  21.     ]; 
  22.  
  23.     if (!$Validate->check($request_data,$rule,$message)) { 
  24.       var_dump($Validate->getError()); 
  25.     } 
  26.   } 

通过验证场景,既减少了控制器代码的臃肿,又减少了 FormRequest 文件过多,还可以自定义 json 数据是不是方便多了呢,

参考文档

laravel 表单验证 :表单验证《Laravel 5.5 中文文档》

Tags: Laravel验证器 Laravel多验证场景

分享到: