第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何使 Eloquent 模型屬性只能通過公共方法更新?

如何使 Eloquent 模型屬性只能通過公共方法更新?

PHP
慕仙森 2023-07-01 17:43:03
我想防止模型屬性直接從外部源設(shè)置,而不通過控制邏輯的設(shè)置器。class Person extends Model{    public function addMoney($amount)    {        if ($amount <= 0) {            throw new Exception('Invalid amount');        }        $this->money += $amount;    }    public function useMoney($amount)    {        if ($amount > $this->money) {            throw new Exception('Invalid funds');        }        $this->money -= $amount;    }}這是不應(yīng)該允許的:$person->money = -500;您必須使用某種訪問器或設(shè)置器方法:$person->useMoney(100);但我不在乎你如何獲得價(jià)值:echo $person->money;// orecho $person->getMoney();// whatever如何強(qiáng)制更新此屬性的唯一方法是通過規(guī)定一些附加邏輯的特定方法?從某種意義上說,將模型屬性設(shè)置為私有或受保護(hù)。我想單獨(dú)執(zhí)行此操作和/或在將模型數(shù)據(jù)保存到數(shù)據(jù)庫之前執(zhí)行此操作。
查看完整描述

2 回答

?
交互式愛情

TA貢獻(xiàn)1712條經(jīng)驗(yàn) 獲得超3個(gè)贊

您可以為要保護(hù)的每個(gè)成員變量重寫 set..Attribute() 函數(shù),或者您可以在 set..Attribute() 函數(shù)內(nèi)執(zhí)行驗(yàn)證,而不是使用單獨(dú)的公共方法。


class Person extends Model

{

    public function addMoney($amount)

    {

        if ($amount <= 0) {

            throw new Exception('Invalid amount');

        }


        if (!isset($this->attributes['money'])) {

            $this->attributes['money'] = $amount;

        } else {

            $this->attributes['money'] += $amount;

        }

    }


    public function useMoney($amount)

    {

        if ($amount > $this->money) {

            throw new Exception('Invalid funds');

        }


        if (!isset($this->attributes['money'])) {

            $this->attributes['money'] = -$amount;

        } else {

            $this->attributes['money'] -= $amount;

        }

    }


    public function setMoneyAttribute($val) {

        throw new \Exception('Do not access ->money directly, See addMoney()');

    }


}


查看完整回答
反對(duì) 回復(fù) 2023-07-01
?
幕布斯7119047

TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個(gè)贊

使用mutator,您的代碼應(yīng)如下所示:

class Person extends Model

{

? ? public function setMoneyAttribute($amount)

? ? {

? ? ? ? if ($amount < 0) {

? ? ? ? ? ? throw new Exception('Invalid amount');

? ? ? ? }

? ? ? ? $this->attributes['money'] = $amount;

? ? ? ? $this->save();

? ? }


? ?public function addMoney($amount)

? ? {

? ? ? ? if ($amount <= 0) {

? ? ? ? ? ? throw new Exception('Invalid amount');

? ? ? ? }

? ? ? ? $this->money += $amount;

? ? }


? ? public function useMoney($amount)

? ? {

? ? ? ? if ($amount > $this->money) {

? ? ? ? ? ? throw new Exception('Invalid funds');

? ? ? ? }

? ? ? ? $this->money -= $amount;

? ? }

}

現(xiàn)在,您可以使用 $person->money = -500 ,它將引發(fā)異常。希望這可以幫助。


查看完整回答
反對(duì) 回復(fù) 2023-07-01
  • 2 回答
  • 0 關(guān)注
  • 189 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)