laravel使用create和update方法注意

2022-04-21 02:22:44   2025-02-09 11:06:38   PHP   326 views  

 

日志报错

[2022-04-21 10:15:54] local.ERROR: Add [id] to fillable property to allow mass assignment on [App\Models\Dept]. {"userId":1,"exception":"[object] (Illuminate\\Database\\Eloquent\\MassAssignmentException(code: 0): Add [id] to fillable property to allow mass assignment on [App\\Models\\Dept]. at D:\\wwwroot\\edu-api\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Eloquent\\Model.php:433)
[stacktrace]

没有加入白名单

在对应模型里加入相关字段即可

protected $fillable = [
        'parentId',  'name',//以及其他需要修改的字段
    ];