Laravel - 模型屬性在資料庫中保持為NULL,即使已創建
P粉015402013
P粉015402013 2024-02-25 19:07:40
0
2
321

我有一個名為Articles的模型,其中包含三個屬性:'title','subtitle'和'body',它工作得完美,但在該模型中添加了四個列('subtitle2' ,'body2','subtitle3'和'body3')後,新加入的列在建立文章後仍然保持為空。 顯然我錯過了什麼,但我無法弄清楚是什麼。

這是遷移:

public function up()
{
    Schema::table('articles', function (Blueprint $table) {
        $table->string('subtitle2')->nullable()->default(null);
        $table->text('body2')->nullable()->default(null);
        $table->string('subtitle3')->nullable()->default(null);
        $table->text('body3')->nullable()->default(null);
        
    });
}

遷移後,我編輯了app / Http / Models / Article.php,它如下所示:

protected $fillable = [
    'title',
    'subtitle',
    'body',
    'subtitle2',
    'body2',
    'subtitle3',
    'body3',

];

這是我的app / Http / Livewire / CreateArticle.php

class CreateArticle extends Component
{
use WithFileUploads;

public $title;
public $subtitle;
public $body;
public $category;

public $subtitle2;
public $body2;

public $subtitle3;
public $body3;

public $temporary_images;
public $images = [];

public $article;
    
    
    public function store()
    {
        $this->validate();

        
        $this->article = Category::find($this->category)->articles()->create($this->validate());
        
        $this->article->user()->associate(Auth::user());
        $this->article->save();
        
        if(count($this->images)){
            foreach($this->images as $image){
                $newImage = $this->article->images()->create(['path'=>$image->store('images', 'public')]);
                
                dispatch(new ResizeImage($newImage->path, 600, 400));
            }
            
        }          
}

最後,我在表單中新增了這些行:

{{-- INSERT SUBTITLE 2 --}}
    
    <div class="mb-3">
        <label for="subtitle2" class="form-label">第二段副标题</label>
        <input type="text" wire:model="subtitle2" class="form-control" id="subtitle2">
       
    </div>
    
    
    {{-- INSERT PARAGRAPH 2 --}}
    
    <div class="mb-3">
        <label for="body2" class="form-label">第二段</label><br>
        <textarea class="form-control" wire:model="body2" id="body2" cols="30" rows="3"></textarea>
    </div>
    
    
    {{-- INSERT SUBTITLE 3 --}}
    
    <div class="mb-3">
        <label for="subtitle3" class="form-label">第三段副标题</label>
        <input type="text" wire:model="subtitle3" class="form-control" id="subtitle3">
        
    </div>
    
    
    {{-- INSERT PARAGRAPH 3 --}}
    
    <div class="mb-3">
        <label for="body3" class="form-label">第三段</label><br>
        <textarea class="form-control" wire:model="body3" id="body3" cols="30" rows="3"></textarea>
    </div>

dd($this); 傳回以下內容

Tinker顯示所有欄位

P粉015402013
P粉015402013

全部回覆(2)
P粉342101652

假設您提供的dd();圖片是最新的。我可以看到資料庫中不存在新的列。 ('subtitle2','body2','subtitle3'和'body3')所有這些在清單中都不可用。 所以我認為您忘記運行遷移命令

php artisan migrate
P粉864872812

您需要指定

protected $rules

才能使用

$this->validate()
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!