主頁 > 知識庫 > yii2 在控制器中驗證請求參數的使用方法

yii2 在控制器中驗證請求參數的使用方法

熱門標簽:百度地圖怎樣標注圖標 咸寧銷售電銷機器人系統(tǒng) 400電話蘭州申請請 開發(fā)地圖標注類網站 電銷機器人問門薩維品牌my 余姚電話機器人 外呼系統(tǒng)能給企業(yè)帶來哪些好處 百度地圖標注偏差 廣東廣州在怎么申請400電話

寫api接口時一般會在控制器中簡單驗證參數的正確性。

使用yii只帶驗證器(因為比較熟悉)實現有兩種方式(效果都不佳)。

針對每個請求單獨寫個 Model , 定義驗證規(guī)則并進行驗證。 缺點:寫好多參數驗證的 Model 類。

使用 獨立驗證器 中提到的 $validator->validateValue() 方法直接驗證變量值。缺點:寫實例化很多驗證器對象。
有么有“一勞永逸”的做法,像在 Model 中通過 rules 方法定義驗證規(guī)則并實現快速驗證的呢?有!

使用方法(實現效果)

namespace frontend\controllers\api;
use yii\web\Controller;
use common\services\app\ParamsValidateService;
class ArticleController extends Controller
{
  // 文章列表
  public function actionList()
  {
    $PVS = new ParamsValidateService();
    $valid = $PVS->validate(\Yii::$app->request->get(), [
      ['category_id', 'required'],
      ['category_id', 'integer'],
      ['keyword', 'string'],
    ]);
    if (!$valid) {
      $this->apiError(1001, $PVS->getErrorSummary(true));
    }
    //...
  }
  // 新增文章
  public function actionPost()
  {
    $PVS = new ParamsValidateService();
    $valid = $PVS->validate(\Yii::$app->request->get(), [
      [['category_id', 'title', 'content'], 'required'],
      ['category_id', 'integer'],
      [['title'], 'string', 'max' => 64],
      [['content'], 'string'],
    ]);
    if (!$valid) {
      $this->apiError(1001, $PVS->getErrorSummary(true));
    }
    //...
  }
  // 文章刪除
  public function actionDelete()
  {
    $PVS = new ParamsValidateService();
    $valid = $PVS->validate(\Yii::$app->request->get(), [
      ['article_id', 'required'],
      ['article_id', 'integer'],
    ]);
    if (!$valid) {
      $this->apiError(1001, $PVS->getErrorSummary(true));
    }
    //...
  }
}

實現方法

定義參數驗證模型

定義參數驗證模型 ParamsValidateModel ,繼承 yii\db\ActiveRecord ,重寫 attributes() 方法,主要功能:

  • 驗證規(guī)則可從對象外部進行設置。
  • 從驗證規(guī)則中獲取可賦值的屬性。
?php
namespace common\models\app;
use yii\db\ActiveRecord;
class ParamsValidateModel extends ActiveRecord
{
  /**
   * @var array 驗證規(guī)則
   */
  private $_rules = [];
  private $_attributes = [];
  // 設置驗證規(guī)則
  public function setRules($rules)
  {
    $this->_rules = $rules;
    foreach ($rules as $item) {
      $this->_attributes = array_unique(array_merge($this->_attributes, (array)$item[0]));
    }
  }
  // 重寫獲取驗證規(guī)則
  public function rules()
  {
    return $this->_rules;
  }
  // 設置可用屬性列表
  public function attributes()
  {
    return $this->_attributes;
  }
}

定義參數驗證服務類

定義參數驗證服務類,主要功能有:

  • 設置參數列表和參數規(guī)則列表。
  • 使用 參數驗證模型 進行驗證和存儲驗證錯誤消息。
  • 使用魔術方法獲取 參數驗證模型 中的驗證錯誤消息。
?php
namespace common\services\app;
use common\models\app\ParamsValidateModel;
use yii\base\Component;
/**
 * Class ParamsValidateService
 * @package common\services\app
 * @method array getErrors(\string $attribute)
 * @method array getFirstErrors()
 * @method array getFirstError(\string $attribute)
 * @method array getErrorSummary(\boolean $showAllErrors)
 */
class ParamsValidateService extends Component
{
  /**
   * @var ParamsValidateModel 模型
   */
  private $model = null;
  public function init()
  {
    parent::init();
    $this->model = new ParamsValidateModel();
  }
  /**
   * @param array $data 數據項
   * @param array $rules 驗證規(guī)則
   * @return bool
   */
  public function validate($data, $rules)
  {
    // 添加驗證規(guī)則
    $this->model->setRules($rules);
    // 設置參數
    $this->model->load($data, '');
    // 進行驗證
    return $this->model->validate();
  }
  public function __call($name, $params)
  {
    if ($this->model->hasMethod($name)) {
      return call_user_func_array([$this->model, $name], $params);
    } else {
      return parent::__call($name, $params);
    }
  }
}

總結

以上所述是小編給大家介紹的yii2 在控制器中驗證請求參數的使用方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!

您可能感興趣的文章:
  • Yii2設置默認控制器的兩種方法
  • Yii2創(chuàng)建控制器(createController)方法詳解
  • yii2控制器Controller Ajax操作示例
  • Yii2使用$this->context獲取當前的Module、Controller(控制器)、Action等
  • Yii2框架控制器、路由、Url生成操作示例
  • Yii控制器中filter過濾器用法分析
  • Yii 框架控制器創(chuàng)建使用及控制器響應操作示例
  • PHP 基于Yii框架中使用smarty模板的方法詳解
  • 在Yii框架中使用PHP模板引擎Twig的例子
  • yii框架創(chuàng)建與設置默認控制器并載入模板操作示例

標簽:十堰 臨沂 銅陵 巴彥淖爾 衡陽 重慶 麗江 鷹潭

巨人網絡通訊聲明:本文標題《yii2 在控制器中驗證請求參數的使用方法》,本文關鍵詞  yii2,在,控制器,中,驗證,;如發(fā)現本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《yii2 在控制器中驗證請求參數的使用方法》相關的同類信息!
  • 本頁收集關于yii2 在控制器中驗證請求參數的使用方法的相關信息資訊供網民參考!
  • 推薦文章