码迷,mamicode.com
首页 > 其他好文 > 详细

Yii2.0中rules验证的调试

时间:2019-05-20 10:29:59      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:get   stat   错误信息   void   信息   first   shift   err   提取   

通过表单模型做接口,验证返回的错误明确错误信息如下:

/**

  • 提取rules规则验证错误的信息
  • @param [type] $model
  • @return void
    */
    public static function getModelError($model) {
    if(empty($model)) return true;
    $errors = $model->getErrors(); //得到所有的错误信息

    if(!is_array($errors)){
        return true;
    }
    
    $firstError = array_shift($errors);
    if(!is_array($firstError)) {
        return true;
    }
    return array_shift($firstError);

    }

调试的过程中通过打断点到$this->save() load() validate(),然后查看获取的
$this->errors、 $model->getErrors()会获取到详细的错误信息以方便一下步的调试

Yii2.0中rules验证的调试

标签:get   stat   错误信息   void   信息   first   shift   err   提取   

原文地址:https://blog.51cto.com/13238147/2397108

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!