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

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

User.php boot() 方法在用戶注冊(cè)時(shí)被多次調(diào)用

User.php boot() 方法在用戶注冊(cè)時(shí)被多次調(diào)用

PHP
偶然的你 2022-10-28 14:45:49
當(dāng)使用內(nèi)置的 Laravel 7 功能創(chuàng)建用戶時(shí),我boot()在我的 User 模型上調(diào)用該方法,以便為新用戶分配 UUID。我遇到的問題是,由于某種原因,啟動(dòng)方法 get 總共調(diào)用了 4 次,導(dǎo)致在 S3 上創(chuàng)建了 4 個(gè)不同的目錄。應(yīng)用程序/用戶.php/**    * Create the user when this class is called    *    * @return void    */protected static function boot(){    // Setup parent    parent::boot();    // Create UUID    $uuid = Str::uuid();    // Create user directory on S3    Storage::disk('s3')->makeDirectory('users/' . $uuid);    // Assign UUID to new user    self::creating(function ($model) use ($uuid) {        $model->id = $uuid;    });}這是在創(chuàng)建時(shí)向用戶添加字段的正確方法嗎?我嘗試使用該RegisterController.php -> create()方法添加它,但它不會(huì)向用戶添加任何內(nèi)容,并導(dǎo)致錯(cuò)誤提示 ID 需要默認(rèn)值。
查看完整描述

1 回答

?
慕容森

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

每當(dāng)要?jiǎng)?chuàng)建對(duì)象時(shí)都會(huì)調(diào)用 boot 方法(不僅僅是持久化,這creating將是做什么的)。每當(dāng) Laravel 使用 Auth 函數(shù)時(shí),都會(huì)發(fā)生這種情況,例如,獲取當(dāng)前用戶,因此需要多次調(diào)用來(lái)引導(dǎo)。


parent::boot()您應(yīng)該將所有內(nèi)容放在創(chuàng)建閉包內(nèi)的引導(dǎo)中(除了調(diào)用):


protected static function boot()

{

    // Setup parent

    parent::boot();


    self::creating(function ($model) {


        // Create UUID

        $uuid = Str::uuid();


        // Create user directory on S3

        Storage::disk('s3')->makeDirectory('users/' . $uuid);


        $model->id = $uuid;

    });

}

不再需要use ($uuid)on 功能。


查看完整回答
反對(duì) 回復(fù) 2022-10-28
  • 1 回答
  • 0 關(guān)注
  • 84 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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