亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

load()與save()怎么在Yii 2中使用

發布時間:2021-01-13 16:26:00 來源:億速云 閱讀:245 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關load()與save()怎么在Yii 2中使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

public function load($data, $formName = null)
 {
  $scope = $formName === null ? $this->formName() : $formName; //調用load 一般我是 $test = new test() $test->load('參數1','參數2')
// 參數1 一般是post get 傳過來的參數 第二個參數 是一個空字符串 '';
//  $this->formName() 返回的額是 你實例化的類的名字 new test() 最后返回的是test

  if ($scope === '' && !empty($data)) {
   $this->setAttributes($data);  //進入

   return true;
  } elseif (isset($data[$scope])) {
   $this->setAttributes($data[$scope]);

   return true;
  } else {
   return false;
  }
 }

接下來看   setAttributes()

public function setAttributes($values, $safeOnly = true)
 {
  if (is_array($values)) {
   $attributes = array_flip($safeOnly ? $this->safeAttributes() : $this->attributes());
//這里執行的是$this->safeAttributes()方法,該方法返回的是當前場景下需要驗證的字段。最后$attributes打印下來看下圖
foreach ($values as $name => $value) {
 if (isset($attributes[$name])) { 
    $this->$name = $value; 
 } elseif ($safeOnly) {
     $this->onUnsafeAttribute($name, $value); 
  } } 
 } 
}

圖: 圖1的文件名是test  實例化后是$test 對象  public function attribues() 方法中對應的就是表字段。

我這里沒有用場景  所以暫時不講解場景這個功能。 不過大家可以看手冊。很容易懂。

load()與save()怎么在Yii 2中使用load()與save()怎么在Yii 2中使用

這兩個圖是對相應的

在之后 執行的是 foreache循環  這里的$this 是那個$test 這個對象對象去調用

//例如post 提交過來的數據是這樣

$post=[

'a'=>123456,

'b'=>'abcdef'

] 

$test->a=123456

$test->b='abcdef'

所以這個load()方法只是分配post  或者get 發過來的數據,不做驗證。

接下來看save();

查看save方法 。

public function save($runValidation = true, $attributeNames = null)
 {
  if ($this->getIsNewRecord()) {  //判斷是否是新紀錄
   return $this->insert($runValidation, $attributeNames);  //執行這里 之后$this代表的是test 這個模型表。
                        //test 繼承的是\yii\mongodb\ActiveRecord 查看insert() 方法 。
    } else {
     return $this->update($runValidation, $attributeNames) !== false; }
   }

insert() 方法中

public function insert($runValidation = true, $attributes = null)
 {
  if ($runValidation && !$this->validate($attributes)) {    //下面的代碼分析validate方法 驗證rules
   return false;
  }
  $result = $this->insertInternal($attributes);  //保存數據

  return $result;
 }

首先看

//進行數據驗證。
public function validate($attributeNames = null, $clearErrors = true)
 {
  if ($clearErrors) {
   $this->clearErrors();
  }

  if (!$this->beforeValidate()) {  //在驗證之前首先執行的是 beforValidata 
   return false;
  }

  $scenarios = $this->scenarios();    
  $scenario = $this->getScenario();    //檢查是否調用場景
  if (!isset($scenarios[$scenario])) {
   throw new InvalidParamException("Unknown scenario: $scenario");
  }

  if ($attributeNames === null) {
   $attributeNames = $this->activeAttributes(); //返回數組(值為屬性的名稱)
  }
//$this->getActiveValidators() 驗證數據。 讀取rules 方法 getActiveValidators() ->getValidators()->createValidators()這里驗證rules等信息->createValidator()
foreach ($this->getActiveValidators() as $validator) { 
      $validator->validateAttributes($this, $attributeNames); //獲取交集 檢查是否有錯誤 hasError()
     }
   $this->afterValidate();
   return !$this->hasErrors(); }

看完上述內容,你們對load()與save()怎么在Yii 2中使用有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

涪陵区| 北宁市| 隆回县| 阳西县| 武冈市| 扶风县| 大港区| 高雄县| 健康| 武鸣县| 南城县| 和龙市| 德安县| 辽中县| 错那县| 吉水县| 靖州| 启东市| 剑川县| 彰武县| 黄梅县| 兴和县| 大田县| 华宁县| 丰原市| 科技| 即墨市| 襄城县| 宜章县| 澄江县| 天祝| 淮北市| 肇源县| 红桥区| 皋兰县| 南江县| 平顶山市| 同德县| 阿拉善右旗| 新和县| 阳新县|