真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

load()與save()怎么在Yii2中使用-創(chuàng)新互聯(lián)

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

創(chuàng)新互聯(lián)建站堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的威縣網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
public function load($data, $formName = null)
 {
  $scope = $formName === null ? $this->formName() : $formName; //調(diào)用load 一般我是 $test = new test() $test->load('參數(shù)1','參數(shù)2')
// 參數(shù)1 一般是post get 傳過(guò)來(lái)的參數(shù) 第二個(gè)參數(shù) 是一個(gè)空字符串 '';
//  $this->formName() 返回的額是 你實(shí)例化的類的名字 new test() 最后返回的是test

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

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

   return true;
  } else {
   return false;
  }
 }

接下來(lái)看   setAttributes()

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

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

我這里沒(méi)有用場(chǎng)景  所以暫時(shí)不講解場(chǎng)景這個(gè)功能。 不過(guò)大家可以看手冊(cè)。很容易懂。

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

這兩個(gè)圖是對(duì)相應(yīng)的

在之后 執(zhí)行的是 foreache循環(huán)  這里的$this 是那個(gè)$test 這個(gè)對(duì)象對(duì)象去調(diào)用

//例如post 提交過(guò)來(lái)的數(shù)據(jù)是這樣

$post=[

'a'=>123456,

'b'=>'abcdef'

] 

$test->a=123456

$test->b='abcdef'

所以這個(gè)load()方法只是分配post  或者get 發(fā)過(guò)來(lái)的數(shù)據(jù),不做驗(yàn)證。

接下來(lái)看save();

查看save方法 。

public function save($runValidation = true, $attributeNames = null)
 {
  if ($this->getIsNewRecord()) {  //判斷是否是新紀(jì)錄
   return $this->insert($runValidation, $attributeNames);  //執(zhí)行這里 之后$this代表的是test 這個(gè)模型表。
                        //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方法 驗(yàn)證rules
   return false;
  }
  $result = $this->insertInternal($attributes);  //保存數(shù)據(jù)

  return $result;
 }

首先看

//進(jìn)行數(shù)據(jù)驗(yàn)證。
public function validate($attributeNames = null, $clearErrors = true)
 {
  if ($clearErrors) {
   $this->clearErrors();
  }

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

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

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

看完上述內(nèi)容,你們對(duì)load()與save()怎么在Yii 2中使用有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


文章名稱:load()與save()怎么在Yii2中使用-創(chuàng)新互聯(lián)
分享鏈接:http://weahome.cn/article/cshsec.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部