Laravel 中 Model `update()` 报错:`MassAssignmentException in Model.php line 452: _url`
Model.php 452 行是 fill() 函数,通过溯源找到调用位置 update():return $this->fill($attributes)->save($options);回到 fill() 函数,函数体内对 $attributes,也就是传入的更新数组参数,进行遍历,判断字段 key 是否可填充。如果可以填充则设置 model 属性,否则判断是否模型完全看守,如果是