溫馨提示×

溫馨提示×

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

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

如何解決laravel id非自增模型取回為0的問題

發(fā)布時間:2021-07-21 09:55:18 來源:億速云 閱讀:106 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)如何解決laravel id非自增模型取回為0的問題的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

問題

laravel5.2 中 如果一個模型的id 為string等非自增類型時候 使用模型的find方法 會返會0

樣例代碼:

  $a=Model::find('blcu');
 echo $a->id; //結(jié)果為0

原因查找

通過var_dump(a)發(fā)現(xiàn)a)發(fā)現(xiàn)a

["attributes":protected]=>
 array(16) {
 ["id"]=>
 string(4) "blcu"

也就是數(shù)據(jù)其實(shí)是讀取出來了 只是->id取得時候 變成了0

查看Model的 getAttribute 方法,此方法指向了 getAttributeValue

 public function getAttributeValue($key)
 {
  $value = $this->getAttributeFromArray($key);


  if ($this->hasGetMutator($key)) {
   return $this->mutateAttribute($key, $value);
  }


  if ($this->hasCast($key)) {
   return $this->castAttribute($key, $value); //這一行是導(dǎo)致數(shù)值改變的地方
  }


  if (in_array($key, $this->getDates()) && ! is_null($value)) {
   return $this->asDateTime($value);
  }

  return $value;
 }

查看 castAttribute 如果 >getCastType(‘id') 如果為int 則 (int)$value

 protected function castAttribute($key, $value)
 {
  if (is_null($value)) {
   return $value;
  }

  switch ($this->getCastType($key)) { 
   case 'int':
   case 'integer':
    return (int) $value; //這一行

查看 >getCastType

 protected function getCastType($key)
 {
  return trim(strtolower($this->getCasts()[$key]));
 }

getCasts

最中改變值得代碼:

 public function getCasts()
 {

  if ($this->getIncrementing()) { //如果Model了的$incrementing字段為True
   return array_merge([
    $this->getKeyName() => 'int', //返回id=>'int'
   ], $this->casts);
  }

  return $this->casts;
 }

結(jié)論

Model的$incrementing 默認(rèn)為true

當(dāng)我們使用id為 非自增的時候 laravel 會把字符串轉(zhuǎn)為int 所以輸出了0

解決方案

給模型生命的時候添加

public $incrementing=false; 即可解決

感謝各位的閱讀!關(guān)于“如何解決laravel id非自增模型取回為0的問題”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI